Method: CardCounter.countdown

Defined in:
lib/cardcounter.rb

.countdownObject



64
65
66
67
68
69
70
71
72
73
# File 'lib/cardcounter.rb', line 64

def self.countdown
	system"clear"
	counter = 3
	3.times do
		puts "Lets begin in .........."
		puts "                #{counter}"
		counter -= 1
		sleep(1); system("clear")
	end
end