Skip to content

Instantly share code, notes, and snippets.

@hummus
Created November 3, 2017 21:03
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 hummus/f42fed506945c4ed2fbeed65f8e8ae40 to your computer and use it in GitHub Desktop.
Save hummus/f42fed506945c4ed2fbeed65f8e8ae40 to your computer and use it in GitHub Desktop.
perl qz
print qq/Hello\n/; # same as: print "Hello\n";
print q/He owes $5.00/; # same as: print 'He owes $5.00', "\n";
@states=qw( E T A L ); # same as ("E", "T", "A","L")
$today = qx(date); # same as $today = `date`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment