The example code in the embedding documentation for calling C from Wren
incorrectly used `!isStatic` when checking for the static `add(_,_)` method
on the `Math` class. This caused the foreign method binding to respond to
non-static calls instead of static ones. Changed the condition to `isStatic`
so that `mathAdd` is correctly bound only when the method is invoked as a
static call.