Skip to content

Instantly share code, notes, and snippets.

@IvanShamatov
Created May 1, 2018 20:21
class User < Struct.new(:name, :age)
def to_s
"#{name}, #{age}"
end
end
=> :to_s
User.new('Ivan', 30).to_s
=> "Ivan, 30"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment