- or download this
#!/usr/bin/perl -w
use strict;
...
}
print "done\n";
- or download this
#!/usr/bin/perl -w
use lib ".";
...
print "$a $b\n";
print "done\n";
- or download this
foo
bar;
...
xyzzy
blah;
moo
- or download this
foo {
bar;
...
}
}
moo
- or download this
package Test;
use strict;
...
$_ .= "}" x @indents;
};
1;