Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
lu
/
lp
mirror of
git://github.com/heyLu/lp
Watch
1
Star
0
Fork
0
Code
Issues
0
Commits
472
Releases
1
Wiki
Browse Source
variable bindings
Lucas Stadler
10 years ago
parent
69371544e5
commit
956b8ad436
1 changed files
with
3 additions
and
0 deletions
Split View
Show Diff Stats
3
0
rust/book/src/main.rs
+ 3
- 0
rust/book/src/main.rs
View File
@ -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
}