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!"); +}