From 6ef6d886f1ed70527c907d7317ea7b73a3e81051 Mon Sep 17 00:00:00 2001 From: Christoph Flick Date: Sun, 1 Oct 2017 20:22:03 +0200 Subject: [PATCH] Added Rust implementation --- hello_world.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 hello_world.rs diff --git a/hello_world.rs b/hello_world.rs new file mode 100644 index 0000000..f084790 --- /dev/null +++ b/hello_world.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello World!"); +} \ No newline at end of file