Top Level Namespace

Defined Under Namespace

Classes: Card, CardError, Hand

Instance Method Summary collapse

Instance Method Details

#converter(input) ⇒ Object



5
6
7
8
9
# File 'lib/99_game.rb', line 5

def converter(input)
	if input == input.capitalize; return input.to_i
	else; return input.capitalize
	end
end

#pause(p) ⇒ Object



1
2
3
4
# File 'lib/99_game.rb', line 1

def pause(p)
    sleep(p)
    puts
end