This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
learn-kotlin/src/dice.kt
2020-03-03 08:18:35 -05:00

6 lines
195 B
Kotlin

import java.util.*
fun main(args: Array<String>) {
val roll12 = { Random().nextInt(12) + 1 }
val rollDie: (Int) -> Int = { sides -> if (sides == 0) 0 else Random().nextInt(sides) + 1 }
}