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

This commit is contained in:
Nathan Michaels 2020-08-18 22:47:38 -04:00 committed by GitHub
parent 771f40204e
commit 4237f1afc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.", .{});
}