class TheGambler::Hand

Attributes

contents[R]

Public Class Methods

new(*args) click to toggle source
# File lib/the_gambler/hand.rb, line 11
def initialize(*args)
  @contents = []
  args.each{|a| @contents << Card.new(a) }
end