module AnnRps

Constants

VERSION

Public Class Methods

game_play() click to toggle source
# File lib/ann_rps.rb, line 77
def self.game_play
  player = Player.new
  comp = Comp.new
  comp.greeting(player.name)
  player.choose
  comp.choose
  Game.winner(player.choice, comp.choice)
end