bin/rps in PlayRockPaperScissorsGame-2.2.9 vs bin/rps in PlayRockPaperScissorsGame-2.3.0
- old
+ new
@@ -25,10 +25,10 @@
class << self
def continue(str1,str2,str3) # pass in 3 parameters
puts ColorizedString[str1].colorize(:color => :green)
print ColorizedString[str2].colorize(:color => :green)
gets # press enter or return to continue
- puts ColorizedString[str3].colorize(:color => :green)
+ puts str3
end
end
continue(Constants::INIT_STRINGS[0], Constants::INIT_STRINGS[1], Constants::INIT_STRINGS[2])