E9003 Stdlib Errors
Stdlib
arrays.%s() requires a function reference; use ()func_name to pass a function
When this occurs
`arrays.range(0, 10, 0)`
Example error message
error[E9003]:
arrays.range() step cannot be zero
How to fix
Range step must be non-zero. Use a positive or negative integer.