mirror of
https://github.com/ziglang/zig.git
synced 2026-01-02 19:43:29 +00:00
Support more operators when running simple arithmetic tests, and allow for int literals in the program spec.
7 lines
138 B
Zig
7 lines
138 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
try stdout.writeAll("Hello!\n");
|
|
}
|