jsonpiler 0.10.3

a Json syntax programming language for Windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use jsonpiler::Jsonpiler;
use std::{env, process::exit};
fn main() {
  #[cfg(not(all(target_os = "windows", target_arch = "x86_64")))]
  #[deprecated(note = "This program is supported on Windows x64 only.")]
  #[allow(dead_code)]
  const _: () = ();
  #[expect(clippy::print_stderr)]
  exit(Jsonpiler::new(false).main(env::args()).unwrap_or_else(|err| {
    eprintln!("{err}");
    1
  }))
}