jsonpiler 0.11.0

a Json syntax programming language for Windows
Documentation
1
2
3
4
5
6
7
8
9
use jsonpiler::Jsonpiler;
use std::{env, process::exit};
fn main() {
  #[expect(clippy::print_stderr)]
  exit(Jsonpiler::new(false).main(env::args()).unwrap_or_else(|err| {
    eprintln!("{err}");
    1
  }))
}