(value: &Value)
| 5749 | include!("main/batch.rs"); |
| 5750 | |
| 5751 | fn println_json(value: &Value) -> anyhow::Result<()> { |
| 5752 | println!("{}", serde_json::to_string_pretty(value)?); |
| 5753 | Ok(()) |
| 5754 | } |
| 5755 | |
| 5756 | fn parse_point(value: &str) -> Result<(f64, f64), String> { |
| 5757 | let (x, y) = value |
no outgoing calls
no test coverage detected