This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def first_question | |
| puts "Would you like to start a new session?" | |
| answer = gets.chomp.downcase | |
| if answer == "yes" | |
| new_session | |
| else | |
| puts "Ok. Would you like to review a previous session?" | |
| prev_session = gets.chomp.downcase |
NewerOlder