Help for this page

Select Code to Download


  1. or download this
        @list = (
            'item one',
            'item two',
            'item three',   ## <- unnecessary punctuation
        );
    
  2. or download this
        @list = (
             'item one'
            ,'item two'
            ,'item three'
        );