Print 'no argument supplied' message on STDERR

This commit is contained in:
Matthew Gamble 2021-07-03 09:07:25 +10:00
parent dc1b011058
commit c545468b90
No known key found for this signature in database
GPG Key ID: B5D06189C3995B3B

View File

@ -22,6 +22,6 @@ fn main() {
},
}
} else {
println!("No argument supplied");
eprintln!("No argument supplied");
}
}