the coolest programming language ever!
- familiar syntax
- zero cost javascript interop (wip)
- runs on anything*
- dynamic typing with type inference
- garbage collected
- JIT compiled
- no variables (yet) (wip)
- multiple types of null
- no pointers to do arithmetic with
- node.js / deno (bun might work, but has not been tested)
- a way to type commands into your terminal
- access to a terminal
no need! after cloning the repo, just run the compiler with
$ node main.js yourjsonfile.jsonor if you're fancy, add this to your .bashrc or .zshrc or whatever:
alias jsonc="node /path/to/main.js"
you can either run it with
$ deno run -A main.js yourjsonfile.jsonor compile it into an executable with
# the resulting executable should be named 'json-lang'
$ deno compile -A main.js*anything that supports running node.js