Skip to content

Instantly share code, notes, and snippets.

@powdahound
Created November 13, 2009 15:43
Show Gist options
  • Save powdahound/233907 to your computer and use it in GitHub Desktop.
Save powdahound/233907 to your computer and use it in GitHub Desktop.
#!/usr/bin/ruby
# prints "true"
if "".length
puts "true"
end
# prints "false"
puts ("".length == true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment