Skip to content

Instantly share code, notes, and snippets.

@kevinw
Created May 30, 2012 23:58
Show Gist options
  • Save kevinw/2839668 to your computer and use it in GitHub Desktop.
Save kevinw/2839668 to your computer and use it in GitHub Desktop.
harsh php vibes
$ perl -e 'print "cool" && "bro"'; echo
bro
$ python -c 'print "cool" and "bro"'
bro
$ node -e 'console.log("cool" && "bro")'
bro
$ php -r 'print "cool" && "bro";'; echo
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment