- or download this
END { print " \n" }
sub I { $_ }
...
$XVI += I and print III $XVI
}
__END__
- or download this
END { print " \n" }
sub b { $_ }
...
$t += b and print d $t
}
__END__
- or download this
END { print " \n" }
sub b { $_ }
...
print chr $t
}
__END__
- or download this
END { print " \n" }
my $t = 1;
...
print chr ($t += $_);
}
__END__