Help for this page

Select Code to Download


  1. or download this
           but entire arrays or array slices are denoted by '@',
           which works much like the word "these" or "those":
    ...
           and entire hashes are denoted by '%':
    
               %days               # (key1, val1, key2, val2 ...)
    
  2. or download this
    
        # An array is written like @days and can be thought
    ...
        # You write a hash like %days, and you can think of
        #    it as a list of key/value pairs.
        %days               # (key1, val1, key2, val2 ...)