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