Can the default value of a named variable of a fun...
# announcements
e
Can the default value of a named variable of a function be accessed from a function extension, or anywhere else?
fun DieRoll.cheatRoll():Int = roll(min = max -1)
// roll is defined as
fun roll(min: Int = 1, max: Int = 6): Int = (min..max).rand()