Explorar el Código

hello, world! (in rust, not quite the first time)

Lucas Stadler %!s(int64=10) %!d(string=hace) años
padre
commit
c74fb1aa85
Se han modificado 2 ficheros con 6 adiciones y 0 borrados
  1. 3 0
      rust/book/.gitignore
  2. 3 0
      rust/book/main.rs

+ 3 - 0
rust/book/.gitignore

@ -0,0 +1,3 @@
1
/main
2
3
*.o

+ 3 - 0
rust/book/main.rs

@ -0,0 +1,3 @@
1
fn main() {
2
    println!("Hello, World!");
3
}