check for dev1650 and some minor polish

This commit is contained in:
Chris Boesch 2023-02-19 17:52:16 +01:00
parent 255e646b94
commit 7d129460cf
6 changed files with 12 additions and 9 deletions

View file

@ -7,9 +7,9 @@ const std = @import("std");
// Take note that this main() definition now returns "!void" rather
// than just "void". Since there's no specific error type, this means
// that Zig will infer the error type. This is appropriate in the
// case of main(), but can make a function harder (function pointers)
// or even impossible to work with (recursion) in some situations.
// that Zig will infer the error type. This is appropriate in the case
// of main(), but can make a function harder (function pointers) or
// even impossible to work with (recursion) in some situations.
//
// You can find more information at:
// https://ziglang.org/documentation/master/#Inferred-Error-Sets