From: acevest Date: Mon, 23 Nov 2020 15:08:25 +0000 (+0800) Subject: rust helloworld X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=3e9dc84382593ef175f648a81ed8c7bedae37f1b;p=acecode.git rust helloworld --- diff --git a/learn/rust/helloworld.rs b/learn/rust/helloworld.rs new file mode 100644 index 0000000..2fe40a1 --- /dev/null +++ b/learn/rust/helloworld.rs @@ -0,0 +1,3 @@ +fn main() { + println!("hello world!"); +}