first programm in rust

This commit is contained in:
Clara Benedicta Maria Müller 2017-04-12 15:54:46 +02:00
commit 9c6b9bb42f
10 changed files with 25 additions and 0 deletions

9
test.rs Executable file
View file

@ -0,0 +1,9 @@
// 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!
}