generated from mg/zig-template
Initial commit
This commit is contained in:
commit
650a824b16
8 changed files with 183 additions and 0 deletions
11
src/main.zig
Normal file
11
src/main.zig
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn main() !void {
|
||||
const stdout_file = std.io.getStdOut().writer();
|
||||
var bw = std.io.bufferedWriter(stdout_file);
|
||||
const stdout = bw.writer();
|
||||
|
||||
try stdout.print("Hello, World.\n", .{});
|
||||
|
||||
try bw.flush();
|
||||
}
|
||||
1
src/root.zig
Normal file
1
src/root.zig
Normal file
|
|
@ -0,0 +1 @@
|
|||
const std = @import("std");
|
||||
Loading…
Add table
Add a link
Reference in a new issue