03 assignment - var to const in example for clarity

This commit is contained in:
Dave Gauer 2021-02-14 12:04:04 -05:00
parent 93050efc73
commit a541dc734b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
// bar CAN be negative and can hold 128 to 127
//
// const foo: u8 = 20;
// var bar: i8 = -20;
// const bar: i8 = -20;
//
// Example: foo can hold 8 bits (0 to 255)
// bar can hold 16 bits (0 to 65,535)