Moved programs to subfolder to avoid overcrowding

in main folder in similar maner to online tutorial
This commit is contained in:
2020-06-10 01:02:33 -04:00
parent f6e5d4aeb3
commit 67b062ab90
6 changed files with 0 additions and 0 deletions

13
1.HelloWorld/hello.rs Normal file
View File

@@ -0,0 +1,13 @@
//Tutorials/hello.rs
//Matthew Ellison
// Created: 06-06-20
//Modified: 06-06-20
//This is a hello world program for rust
fn main(){
//Basic printing
println!("Hello World");
let x = 5;
println!("'x' = {}", x);
}