Classes: Console, Game
"0.2.0"
6 7 8 9 10 11
# File 'lib/rav_codebreaker.rb', line 6 def self._play(level) begin game = Game.new(level) game.play end while game.again? end
13 14 15 16 17 18
# File 'lib/rav_codebreaker.rb', line 13 def self.play(level) begin console = Console.new(level) console.play end while console.again? end