6 lines
119 B
Rust
6 lines
119 B
Rust
use std::{env::args, process::exit};
|
|
|
|
fn main() {
|
|
eprintln!("cargo stub called with {:?}", args());
|
|
exit(1);
|
|
}
|