mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 11:20:46 -05:00
03 assignment - var to const in example for clarity
This commit is contained in:
parent
d4739ac00a
commit
5d44734cfe
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue