Return to Snippet

Revision: 38738
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