Commit 4237f1afc7

Nathan Michaels <nathan@nmichaels.org>
2020-08-19 04:47:38
Change std.debug.warn to std.log.info in init-exe template. (#5941)
1 parent 771f402
Changed files (1)
lib
std
special
init-exe
lib/std/special/init-exe/src/main.zig
@@ -1,5 +1,5 @@
 const std = @import("std");
 
 pub fn main() anyerror!void {
-    std.debug.warn("All your codebase are belong to us.\n", .{});
+    std.log.info("All your codebase are belong to us.", .{});
 }