Skip to content

Instantly share code, notes, and snippets.

@purplexa
Created August 13, 2015 06:45
Show Gist options
  • Select an option

  • Save purplexa/57c28afd36c5c0591763 to your computer and use it in GitHub Desktop.

Select an option

Save purplexa/57c28afd36c5c0591763 to your computer and use it in GitHub Desktop.
perl logical operator confusion
0 && 1 || 1 # true
0 && 1 or 1 # true
0 and 1 || 1 # false
0 and 1 or 1 # true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment