Passwortgenerator/test.rs
Clara Benedicta Maria Müller 9c6b9bb42f first programm in rust
2017-04-12 15:54:46 +02:00

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!
}