Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    &tryLocal("name=james&color=red&age=12");
    ...
    local $$lname = $lvalue;
    }
    }################# end tryLocal
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    }
    
    my %params=tryLocal("name=james&color=red&age=12");
    
  3. or download this
    @in=qw(foo bar baz);
    tryLocal("name=james&color=red&age=12");
    print "$name : @in\n";