From 3e9dc84382593ef175f648a81ed8c7bedae37f1b Mon Sep 17 00:00:00 2001 From: acevest Date: Mon, 23 Nov 2020 23:08:25 +0800 Subject: [PATCH] rust helloworld --- learn/rust/helloworld.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 learn/rust/helloworld.rs 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!"); +} -- 2.44.0