Files
book/redirects/variable-bindings.md
2018-11-20 17:59:52 -05:00

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).