Skip to content

Instantly share code, notes, and snippets.

@tkm-kj
Created July 5, 2020 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkm-kj/1e1f2332c849c7515a33dcdf216734b2 to your computer and use it in GitHub Desktop.
Save tkm-kj/1e1f2332c849c7515a33dcdf216734b2 to your computer and use it in GitHub Desktop.
じゃんけんの雛形
p1_name = gets.to_s.chomp
p2_name = gets.to_s.chomp
p1 = Player.new(p1_name)
p2 = Player.new(p2_name)
puts Game.new(p1, p2).start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment