mirror of
https://bitbucket.org/Mattrixwv/rusttutorials.git
synced 2025-12-06 10:33:57 -05:00
14 lines
219 B
Rust
14 lines
219 B
Rust
//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);
|
|
}
|