Skip to content

Instantly share code, notes, and snippets.

@pouyan-ghasemi
pouyan-ghasemi / RockScissorPaper.scala
Last active December 29, 2015 01:08
This is the Rock, Scissor, Paper, written in Scala! I am not sure about the rules but what is cool about it is the Pattern Matching in Scala.
package game
import Math.random
object RSPGame {
abstract class Choice
case object Rock extends Choice
case object Paper extends Choice
case object Scissor extends Choice