1
Fork 0
mirror of https://github.com/RGBCube/DOOM-fire-zig synced 2025-07-28 09:37:44 +00:00

Update main.zig

This commit is contained in:
const void* 2022-01-15 19:24:56 -05:00 committed by GitHub
parent 743f4bc76f
commit 8949ceb94a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ const stdin = std.io.getStdIn().reader();
///////////////////////////////////
// zig hints
///////////////////////////////////
// do or do not - there is no try: catch unreadable instead of try on memory / file io
// do or do not - there is no try: catch unreachable instead of try on memory / file io
// - put all try to initXXX()
// for (i=0; i<MAX; i++) { ... } => var i=0; while (i<MAX) { defer i+=1; ... }