ClosedBit error docs

CB_ERR_BAD_ARGUMENT_COUNT

Wrong number of arguments. A function was called with too few or too many values.

Why it happens

A function was called with too few or too many values.

How to fix it

Check the function signature and pass exactly the required arguments.

Copy-paste fix pattern
library CB-Math

fn main() {
    f64 value = CB-Math.divide_or(10, 2, 0)
    println(value)
}
Runtime and Studio now show this kind of page from the error dialog: plain message first, stable code second, original details third.