macro_rules! applet { () => { ... }; }
native
test
Defines the entry point of an applet.
This macro brings all items of this crate into scope and makes sure main() is the entry point of this applet.
main()
A typical applet looks like:
#![no_std] wasefire::applet!(); fn main() { debug!("Hello world!"); }