class Computer

Public Instance Methods

make_choice() click to toggle source
# File lib/player.rb, line 26
def make_choice
  options = ["rock", "paper", "scissors"]
  puts "Player 2 is choosing now"
  @choice = options.sample
end