Multiplying two integers from Rust

from blog Eric Sink, | ↗ original
This is part of a series on Native AOT. Previous -- Top -- Next Rust has a really nice feature called raw-dylib, which allows calling external functions without linking at build time. Given the name of the shared library, Rust will dynamically load the library and lookup the function. (At the time of this writing, raw-dylib is supported only on...