Help for this page

Select Code to Download


  1. or download this
    sub blah
    {
    ...
    
    blah(foo => 42, bar => "don't forget this", baz => 'oh!');
    blah(foo => 42, baz => 'oh!'); # <-- will die()
    
  2. or download this
    $foo=42;
    print nameThatVariable($foo); # '$foo', of course.
    ...
    print nameThatVariable(do { my $tmp=23 }); # '$tmp'?
    
    print nameThatVariable([ 23,45 ]); # ?