1 2 3 4 5 6 7
fn main() -> Result<(), Box<dyn std::error::Error>> { let fact = saddle_runtime::production_fact::runtime_production_fact_input().into_canonical_json()?; use std::io::Write as _; std::io::stdout().write_all(&fact)?; Ok(()) }