js-macros 0.1.5

Quickly prototype procedural macros using JavaScript or TypeScript!
Documentation
1
2
3
4
5
6
use js_macros::hello_world;

fn main() {
    // This hello_world! macro is defined in `../js-macros/custom_function.ts`
    hello_world!("Hello ts macro!");
}