jsonpiler 0.9.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::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().main().unwrap_or_else(|err| {
    eprintln!("{err}");
    1
  }))
}