9 lines
178 B
Rust
Executable file
9 lines
178 B
Rust
Executable file
// my first rust programm
|
|
// aka "rust playground"
|
|
|
|
|
|
// main function
|
|
fn main() {
|
|
println!("Hello world!"); //print to console -> important: here not a tab, but 4 spaces!
|
|
}
|
|
|