Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created February 15, 2015 04:56
Show Gist options
  • Save ahmedeshaan/63db2ffddc3b11e48e52 to your computer and use it in GitHub Desktop.
Save ahmedeshaan/63db2ffddc3b11e48e52 to your computer and use it in GitHub Desktop.
@var = 'Hi'
puts "#@var there!" #=> "Hi there!"
$var = 'Hi'
puts "#$var there!" #=> "Hi there!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment