From ba73abcc635b7f0bd921a322dfdb7d9295e7a9c6 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 20 Jan 2020 18:39:57 -0500 Subject: [PATCH] Rust goop --- rustbyexample/.gitignore | 2 +- rustbyexample/hello/hello.rs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 rustbyexample/hello/hello.rs diff --git a/rustbyexample/.gitignore b/rustbyexample/.gitignore index 2f7896d..7b8f48a 100644 --- a/rustbyexample/.gitignore +++ b/rustbyexample/.gitignore @@ -1 +1 @@ -target/ +/hello/hello diff --git a/rustbyexample/hello/hello.rs b/rustbyexample/hello/hello.rs new file mode 100644 index 0000000..e5170b8 --- /dev/null +++ b/rustbyexample/hello/hello.rs @@ -0,0 +1,4 @@ +fn main() { + println!("Hello World!"); + println!("I'm a Rustacean!"); +}