Skip to content

Instantly share code, notes, and snippets.

@Dyrcona
Created December 6, 2012 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dyrcona/4228955 to your computer and use it in GitHub Desktop.
Save Dyrcona/4228955 to your computer and use it in GitHub Desktop.
Some kind of statement about perl
#!/usr/bin/perl
# Like all art, the interpretation is up to the viewer.
# Written 2012 by Jason Stephenson and Thomas Berezansky.
use strict;
use Data::Dumper;
&stoopid('one',1,'two',2);
print Dumper { 'one', two => 'three', four => 'five', 'six'};
sub stoopid {
my %hash = @_;
print Dumper \%hash;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment