Help for this page

Select Code to Download


  1. or download this
    package Testtie;
    
    ...
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    
    $f = "1\n";
    print $f;
    
  3. or download this
    > ./test_test.pl
    Died at Testtie.pm line 17.
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    
    $f = {1 => 2};
    print $f->{1};
    
  5. or download this
    dash2@davehj:~/fun > ./test_test.pl
    Died at Testtie.pm line 17.
    
  6. or download this
    #!/usr/bin/perl
    
    ...
    
    $f = sub {print $_};
    print $f->(1);
    
  7. or download this
    > ./test_test.pl
    1