use const for variables that are never modified

This commit is contained in:
Adam Millerchip 2021-12-26 13:24:01 +09:00
parent ef9bdb1382
commit 669d4f7337
4 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ pub fn main() void {
const lang_chars = [_]u8{ 26, 9, 7, 42 };
for (lang_chars) |c| {
var real_char: u8 = switch (c) {
const real_char: u8 = switch (c) {
1 => 'A',
2 => 'B',
3 => 'C',