Values
Here are some basic built-in types, and the syntax for literal values of each type.
| Types | Literals | |
|---|---|---|
| Signed integers | i8,i16,i32,i64,i128,isize | -10,0,1_000,123_i64 | 
| Unsigned integers | u8,u16,u32,u64,u128,usize | 0,123,10_u16 | 
| Floating point numbers | f32,f64 | 3.14,-10.0e20,2_f32 | 
| Unicode scalar values | char | 'a','α','∞' | 
| Booleans | bool | true,false | 
The types have widths as follows:
- iN,- uN, and- fNare N bits wide,
- isizeand- usizeare the width of a pointer,
- charis 32 bits wide,
- boolis 8 bits wide.
This slide should take about 10 minutes. 
                    There are a few syntaxes which are not shown above:
- All underscores in numbers can be left out, they are for legibility only. So
1_000can be written as1000(or10_00), and123_i64can be written as123i64.