Another JavaScript Runtime
Honestly I'm just learning rust right now 😅
bash
$ cargo run # run a js repl!
$ cargo run path-to-js.js # run a js file!
$ cargo build --release # make a prod build
```bash $ jstime
Welcome to jstime!
> ```
```bash $ cat hello-world.js console.log("hello world");
$ jstime hello-world.js hello world
```
```rust use jstime::script;
fn main() { script::run("console.log('hello world')"); } ```