Skip to content

Commit

Permalink
Merge 56ccf6e into 158b05f
Browse files Browse the repository at this point in the history
  • Loading branch information
jidanni committed Jul 6, 2021
2 parents 158b05f + 56ccf6e commit b0fb0c8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pod/perldata.pod
Expand Up @@ -57,9 +57,10 @@ which works much as the word "these" or "those" does in English,
in that it indicates multiple values are expected.
X<array>

@days # ($days[0], $days[1],... $days[n])
@days[3,4,5] # same as ($days[3],$days[4],$days[5])
@days{'a','c'} # same as ($days{'a'},$days{'c'})
@days # ($days[0], $days[1], ... $days[n])
@days[3,4,5] # same as ($days[3], $days[4], $days[5])
@days{'a','c'} # same as ($days{'a'}, $days{'c'})
@{$days{'p'}}{'x','y'} # same as ($days{'p'}{'x'}, $days{'p'}{'y'})

Entire hashes are denoted by '%':
X<hash>
Expand Down

0 comments on commit b0fb0c8

Please sign in to comment.