Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 200 Bytes

README.md

File metadata and controls

9 lines (9 loc) · 200 Bytes

Loops-and-Iterations-Exercise-2

answer = "" while answer != "STOP" do puts "hello, how is your day?" answer = gets.chomp puts "that's nice" answer = gets.chomp end