Commit 1bdcbd18ae
Changed files (1)
lib
init-exe
src
lib/init-exe/src/main.zig
@@ -1,6 +1,8 @@
const std = @import("std");
pub fn main() anyerror!void {
+ // Note that info level log messages are by default printed only in Debug
+ // and ReleaseSafe build modes.
std.log.info("All your codebase are belong to us.", .{});
}