Class: DogWalker::Dog
- Inherits:
-
Object
- Object
- DogWalker::Dog
- Defined in:
- lib/dog_walker.rb
Instance Method Summary collapse
Instance Method Details
#walk_the_dog ⇒ Object
6 7 8 9 10 11 |
# File 'lib/dog_walker.rb', line 6 def walk_the_dog dog_name = "" print "Enter your dogs name: " dog_name = gets.chomp.strip puts "Come on #{dog_name}, let's start walking!" end |