mirror of
https://github.com/rust-lang/book.git
synced 2026-05-17 02:40:45 -04:00
14 lines
327 B
Markdown
14 lines
327 B
Markdown
% Variable Bindings
|
|
|
|
<small>There is a new edition of the book and this is an old link.</small>
|
|
|
|
> Variable bindings bind some value to a name, so it can be used later.
|
|
|
|
```rust
|
|
let foo = 5;
|
|
```
|
|
|
|
---
|
|
|
|
You can find the latest version of this information
|
|
[here](ch02-00-guessing-game-tutorial.html#storing-values-with-variables). |