Skip to content

Instantly share code, notes, and snippets.

@erran-r7
Last active August 29, 2015 14:05
Show Gist options
  • Save erran-r7/8663793a45b96f09f8e6 to your computer and use it in GitHub Desktop.
Save erran-r7/8663793a45b96f09f8e6 to your computer and use it in GitHub Desktop.
def doAssessment
puts 'doing assessment'
true
end
# => :doAssessment
success = false
# => false
success &= doAssessment
# doing assessment (is printed to STDOUT)
# => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment