Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created June 13, 2016 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/d296b0dda856155cb4a51d1d91727e78 to your computer and use it in GitHub Desktop.
Save marcusshepp/d296b0dda856155cb4a51d1d91727e78 to your computer and use it in GitHub Desktop.
to_sym
x = "foo"
# => :foo
x == :foo
# => true
x = @foo
# => @foo
x.to_sym
# => :@foo
x == :@foo
# => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment