Last active
December 29, 2015 05:39
-
-
Save vanmichael/7623761 to your computer and use it in GitHub Desktop.
Phase 1
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
| #Echo Phase 1 | |
| class Echo | |
| def initialize | |
| get_input | |
| play_back(@input) | |
| end | |
| def get_input | |
| puts "What do you want to say?" | |
| @input = gets.chomp | |
| end | |
| def play_back(response) | |
| puts "You said: #{response}" | |
| end | |
| end | |
| Echo.new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment