Added cargo file and updated name to fit

This commit is contained in:
2020-06-11 13:52:09 -04:00
parent 93737abed3
commit 3dc9661907
21 changed files with 48 additions and 7 deletions

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);
}