##
#!/usr/bin/perl
use strict;
use warnings;
use TT;
# s1 with no args;
s1;
print "\n";
# s1 with explicit code passed in;
s1 sub {
local $\="\n";
print "Customized s2";
print "Args:";
print for @_;
};
__END__
####
Default s2
Args: foo bar
Customized s2
Args:
foo
bar