Explorar el Código

variable bindings

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

+ 3 - 0
rust/book/src/main.rs

@ -1,3 +1,6 @@
1 1
fn main() {
2
    let x = 5;
3
2 4
    println!("Hello, World!");
5
    println!("THE number is {}", x);
3 6
}