Skip to content

Instantly share code, notes, and snippets.

@kinsteronline
Created April 22, 2014 20:43
Show Gist options
  • Save kinsteronline/11193608 to your computer and use it in GitHub Desktop.
Save kinsteronline/11193608 to your computer and use it in GitHub Desktop.
Gambler Struct
#
# I like to gamble
#
Gambler = Struct.new(:nick, :chip_count) do
def to_s
"#{nick}: Ð #{chip_count}"
end
end
wild_bill = Gambler.new("Wild Bill", 103)
name, chipcount = *wild_bill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment