zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 4237f1afc7f38f68adf0877fc9be811f9189544f (tree)
parent 771f40204e769f92bb28bdb9c44e3ddd9d8c4386
Author: Nathan Michaels <nathan@nmichaels.org>
Date:   Tue, 18 Aug 2020 22:47:38 -0400

Change std.debug.warn to std.log.info in init-exe template. (#5941)


Diffstat:
Mlib/std/special/init-exe/src/main.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/special/init-exe/src/main.zig b/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.", .{}); }