Skip to content

Instantly share code, notes, and snippets.

@tryperl
Created March 1, 2013 17:13
Show Gist options
  • Save tryperl/5066176 to your computer and use it in GitHub Desktop.
Save tryperl/5066176 to your computer and use it in GitHub Desktop.
Created by www.tryperl.com.
#Created by tryperl.com
use 5.010;
use strict;
use warnings;
sub AUTOLOAD {
my $name = $AUTOLOAD;
say "From AUTOLOAD: $name";
}
print "Go Ahead and edit me!";
print "Once you are done editing, click SAVE to save changes :D";
# print <>; #you can use the STDIN to put data into your program
unknown_func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment