Skip to content

Instantly share code, notes, and snippets.

@FerPerales
Created October 13, 2012 14:24
Show Gist options
  • Save FerPerales/3884809 to your computer and use it in GitHub Desktop.
Save FerPerales/3884809 to your computer and use it in GitHub Desktop.
Concatenation
s = "Hello " << "rubyCUCEI"
puts s # Hello rubyCUCEI
s = "Hello " + "rubyCUCEI"
puts s # Hello rubyCUCEI
s = "Hello " "rubyCUCEI"
puts s # Hello rubyCUCEI
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment