1
0

9 lines
160 B
Zig
Raw Normal View History

2019-06-15 15:31:01 -06:00
const std = @import("std");
pub fn main() !void {
var stdout_file = try std.io.getStdOut();
while (true) {
try stdout_file.write("e");
}
}