class VikingRoom7::Human
Public Instance Methods
get_hand()
click to toggle source
# File lib/viking_room7/human.rb, line 4 def get_hand puts "What do you want to play?(Use 'R' for Rock, 'P' for Paper, and 'S' for Scissors" hand = gets.chomp.downcase @hand = hand end