Skip to content

Instantly share code, notes, and snippets.

@kschiess
Last active December 21, 2015 00:09
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