general-parser 0.0.6

Configurable parser for S-expressions with configurable extensions for mathematical notation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() -> std::process::ExitCode {
	let output = std::process::Command::new("spectra")
		.arg("check")
		.arg("./specification.md")
		.arg("./target/debug/examples/parse --rpc --interactive")
		.status()
		.unwrap();

	if output.code().is_none_or(|item| item == 0) {
		std::process::ExitCode::SUCCESS
	} else {
		std::process::ExitCode::FAILURE
	}
}