Help for this page

Select Code to Download


  1. or download this
      sub foo { return ('we','do','so') }
    
  2. or download this
      sub foo { $_[0]='foo' }
      my $x='bar';
      foo($x);
      print $x; #prints 'foo'
    
  3. or download this
      sub foo { my $x=shift; $x='foo'}