Merge pull request #239 from zignd/patch-1

zig can e too
This commit is contained in:
LinuxMercedes 2018-12-08 20:53:15 -06:00 committed by GitHub
commit 4446e70d31
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");
}
}