Created
November 3, 2017 21:03
-
-
Save hummus/f42fed506945c4ed2fbeed65f8e8ae40 to your computer and use it in GitHub Desktop.
perl qz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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