Skip to content

Instantly share code, notes, and snippets.

@kschiess
Last active December 21, 2015 00:09
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 kschiess/6218466 to your computer and use it in GitHub Desktop.
Save kschiess/6218466 to your computer and use it in GitHub Desktop.
Non-obvious string interpolation tidbit.
class Foo
def to_s
1
end
# Just to make sure ;)
def inspect
'a foo'
end
end
p "This is a foo: #{Foo.new}!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment