AM
Size: a a a
AM
VP
BP
BP
VP
VP
BP
М
VD
fun main(args: Array<String>) {
var swordsJuggling: Int? = null
val isJugglingProficient = (1..3).shuffled().last() == 3
if (isJugglingProficient) {
swordsJuggling = 2
}
swordsJuggling = swordsJuggling!!.plus(1)
println("You juggle $swordsJuggling swordd!")
}
fun prificiencyCheck(swordJuggling: Int?) {
swordJuggling ?: throw IllegalStateException("Player cannot juggle swords")
}
М
VD
VD
VD
VD
AA
AA
過
過