Rust variables

From wikinotes
Revision as of 21:32, 29 August 2021 by Will (talk | contribs) (Created page with "= Assignment = <blockquote> <syntaxhighlight lang="rust"> let test_env: bool = true; </syntaxhighlight> </blockquote><!-- Assignment --> = Literals = <blockquote> <syntaxhigh...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Assignment

let test_env: bool = true;

Literals

let float = 3.14; // f64
let integer = 7;  // i32