Help for this page

Select Code to Download


  1. or download this
    sub list{ ( '1', '2', '3', '4', '5' ) }
    print @a=( list() )[0,0];
    
  2. or download this
     sub list{ ( 1, 2, 3, 4, 5 ) }
    print @a=( list() )[0,0];
    ...
    sub list{ ( '1', '2', '3', '4', '5' ) }
    print @a=( list() )[0,0];
    1 Use of uninitialized value in print ...