JS Engine written in Rust runs on WASM. Made by @uint256_t
あんまり重たい処理をさせるとフリーズするかもしれないので注意
let fact = (x) => { if (x == 1) return 1; return fact(x - 1) * x; }; print(fact(10));