Sorel supports calling other native code when it's statically linked into the same binary.
Declare an externally-linked function using `extern function_name`.
Then, you can call it like any other Sorel word.
-To pass arguments, simply put them on the stack in the order that they appear in the function signature.
+Externally-linked functions cannot (currently) take arguments, but the data stack could be manipulated.
Be careful with types.
The return value is added to the stack once the function returns.