Skip to content

Instantly share code, notes, and snippets.

View TheAntiFlash's full-sized avatar
💀
fr fr

Yahya Bin Naveed TheAntiFlash

💀
fr fr
View GitHub Profile
fun main (){
/**
* [gameRules] defines which choice wins between player and cpu
*/
val gameRules =
mapOf(
'R' to 'S',
'P' to 'R',
'S' to 'P')