Skip to content

Instantly share code, notes, and snippets.

@cowens
Created July 7, 2009 20:53
Show Gist options
  • Save cowens/142364 to your computer and use it in GitHub Desktop.
Save cowens/142364 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
END { print "$string\n" }
BEGIN { $string = "w" }
CHECK { $string .= "e" }
INIT { $string .= "n" }
CHECK { $string .= "d" }
END { $string .= "t" }
CHECK { $string .= "k" }
BEGIN { $string .= "o" }
INIT { $string .= "." }
INIT { $string .= "n" }
END { $string .= "e" }
BEGIN { $string .= "n" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment