Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    my @x =('a','b', foo(), 'c');
    print "\@x=(@x)\n";
    
  2. or download this
    wantarray? 1
    @x=(a b 1 2 3 c)