Revision: 38738
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at January 6, 2011 17:35 by Enaku
Initial Code
use strict;
use warnings;
use Switch;
my $test = test("pants");
my $outher = other("fuck");
print $test;
print $outher;
sub test {
switch($_) {
case("pants") {
return "FUCK\n";
}
}
}
sub other {
return $_[0];
}
Initial URL
Initial Description
Initial Title
I hate the world
Initial Tags
Initial Language
Perl