Skip to content

Instantly share code, notes, and snippets.

@naush
Created February 9, 2011 06:26
Show Gist options
  • Save naush/818023 to your computer and use it in GitHub Desktop.
Save naush/818023 to your computer and use it in GitHub Desktop.
# !
return (a > b)
# !!
if (a > b)
return true
else
return false
# !!!
return true if (a > b)
return false
# !!!!
return (a > b) ? true : false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment