var to const when posssible

This commit is contained in:
lording
2023-06-22 09:41:41 +00:00
parent f09a87c348
commit d2d3dfa277
16 changed files with 27 additions and 27 deletions

View File

@@ -9,7 +9,7 @@
// @enumToInt(). We'll learn about builtins properly in a later
// exercise.
//
// var my_stuff: u8 = @enumToInt(Stuff.foo);
// const my_stuff: u8 = @enumToInt(Stuff.foo);
//
// Note how that built-in function starts with "@" just like the
// @import() function we've been using.