The example in “Challenge: REPL Arithmetic” says to try min(94, -99). This results in an error, to complete the example it looks like it should be “minOf(94, -99)”
2 Likes
just add import kotlin.math.min.
if you select min from the autocomplete helper, Kotlin REPL will add it for you.
1 Like