Macro emojicode::emoji_functions [] [src]

macro_rules! emoji_functions {
    (
        $($name:ident ($t:ident) $b:block),+
    ) => { ... };
}

Shorthand for defining functions compatible with the linking table, and an accompanying linking table.

Example:

emoji_functions!(
    hello_world(thread) {
        println!("Hello from Rust!");
        thread.return_from_function();
    }
);