Back to Rust Lang

Variable Bindings

redirects/variable-bindings.md

latest327 B
Original Source

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