Contact: aviboots(AT)netvision.net.il
39,987 questions
51,931 answers
573 users
import kotlin.random.Random fun rollDice(): Int = Random.nextInt(1, 7) // 1–6 inclusive fun main() { val dice1 = rollDice() val dice2 = rollDice() println("Dice 1: $dice1") println("Dice 2: $dice2") } /* run: Dice 1: 4 Dice 2: 6 */