Removed extra file

This commit is contained in:
Cameron Reed 2024-10-19 14:31:19 -06:00
parent 149e09f119
commit a91604416d

View File

@ -1,16 +0,0 @@
const std = @import("std");
pub fn main() !void {
const stdout = std.io.getStdOut().writer().any();
//const stdout = getStdout();
_ = try stdout.write("Hello 123\n");
try printABC(stdout);
}
fn getStdout() std.io.AnyWriter {
return std.io.getStdOut().writer().any();
}
fn printABC(stdout: std.io.AnyWriter) !void {
_ = try stdout.write("ABC\n");
}