zilch/lang/rust/helpers/src/bin/false.rs

7 lines
119 B
Rust
Raw Normal View History

2025-03-02 20:32:05 +00:00
use std::{env::args, process::exit};
fn main() {
eprintln!("cargo stub called with {:?}", args());
exit(1);
}