Skip to content

Instantly share code, notes, and snippets.

@FerPerales
Created October 13, 2012 14:32
Show Gist options
  • Save FerPerales/3884835 to your computer and use it in GitHub Desktop.
Save FerPerales/3884835 to your computer and use it in GitHub Desktop.
Special concat
#s = "Hello " + 64 #Error: can't convert Fixnum into String
s = "Hello " << 64
puts s # Hello @
s = "Hello " << 64.to_s
puts s # Hello 64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment