In this section, we will talk about how to make functions resistant to possible errors.
Working with functions
Error handling
In the previous section, we saw that passing the wrong type of argument to a function causes the program to terminate with an error message. Is there a way to guard functions against wrong types and still let the program continue? We know how to test types with type?, so we can do that instead. Here is a version of the inc function that is untyped, but protected against the possibility of n not being an integer:
inc: func [n][
if not integer? n [
print ["n must be an integer, not a" (type? n)]
exit
]
n + 1
]
inc 9 ;== 10
inc pi ;== n must be an integer, not a...