zig can e too

This commit is contained in:
Igor H. Vieira 2018-12-08 21:32:31 -02:00 committed by GitHub
parent e23f2f375a
commit 43a35cafde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
e.zig Normal file
View File

@ -0,0 +1,8 @@
const std = @import("std");
pub fn main() !void {
var stdout_file = try std.io.getStdOut();
while (true) {
try stdout_file.write("e");
}
}