Added string specifier in format strings (#3)

This is now required in current versions of Zig.
This commit is contained in:
Dave Gauer
2021-02-10 22:13:22 -05:00
parent 56ba5d7fda
commit 2bdacd35c1
3 changed files with 8 additions and 7 deletions

View File

@@ -20,5 +20,5 @@ pub fn main() void {
And the Spiders from Mars
;
std.debug.print("{}\n",.{lyrics});
std.debug.print("{s}\n",.{lyrics});
}