Merge pull request #11 from djmattyg007/use_stderr

Print 'no argument supplied' message on STDERR
This commit is contained in:
Kasper 2021-07-03 01:31:37 +02:00 committed by GitHub
commit 9bf7c69c03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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