Why can I not do this ``` while (acc > 0) {...
# announcements
j
Why can I not do this
Copy code
while (acc > 0) {
        (acc, mod) = divmod(acc, 58)
    }
divmod returns
Pair<Int, Int>