print ok in the test file

This commit is contained in:
Tushar Sadhwani 2024-11-09 01:58:31 +05:30
parent 32f0aaedc3
commit e1ef00939b
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
const std = @import("std"); const std = @import("std");
pub fn main() !void { pub fn main() !void {
std.debug.print("Hello!\n", .{}); const stdout = std.io.getStdOut().writer();
try stdout.print("OK\n", .{});
} }