Skip to content

Instantly share code, notes, and snippets.

@waterlink
Created October 15, 2018 15:54
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 waterlink/4876ff5a12f33a785f576b7f8c76856e to your computer and use it in GitHub Desktop.
Save waterlink/4876ff5a12f33a785f576b7f8c76856e to your computer and use it in GitHub Desktop.
step - 13
val firstWins = when (first to second) {
SCISSORS to PAPER,
PAPER to ROCK,
ROCK to SCISSORS -> true
else -> false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment