This website requires JavaScript.
Explore
Help
Register
Sign In
rust
/
rustlings
Watch
1
Star
0
Fork
0
You've already forked rustlings
mirror of
https://github.com/rust-lang/rustlings.git
synced
2024-12-14 11:22:55 +02:00
Code
Issues
Releases
Activity
bde2524c3b
rustlings
/
exercises
/
01_variables
/
variables1.rs
7 lines
85 B
Rust
Raw
Normal View
History
Unescape
Escape
feat(intro): Add intro section.
2021-04-24 19:15:34 +02:00
// Make me compile!
feat: improve `watch` execution mode The `watch` command now requires user action to move to the next exercise. BREAKING CHANGE: this changes the behavior of `watch`.
2019-11-11 14:38:24 +02:00
Add some exercises about variables!
2015-09-17 02:19:24 +02:00
fn
main
(
)
{
x
=
5
;
println!
(
"
x has the value
{}
"
,
x
)
;
}
Reference in New Issue
Copy Permalink