Skip to content

Instantly share code, notes, and snippets.

@cowens
Created July 7, 2009 20:58
Show Gist options
  • Save cowens/142366 to your computer and use it in GitHub Desktop.
Save cowens/142366 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use perl5i;
BEGIN { say 1 }
BEGIN { say 2 }
CHECK { say 4 }
CHECK { say 3 }
INIT { say 5 }
INIT { say 6 }
say 7; #runtime
say 8; #runtime
END { say 10 }
END { say 9 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment