cowsay is like hello world
This commit is contained in:
10
src/main.rs
Normal file
10
src/main.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
use std;
|
||||
mod cow;
|
||||
|
||||
fn main() {
|
||||
let args: Vec<String> = std::env::args().collect();
|
||||
|
||||
let c = cow::Cow::new(args[1..].join(" "));
|
||||
|
||||
println!("{}", c)
|
||||
}
|
Reference in New Issue
Block a user