mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 13:06:27 +02:00
6 lines
No EOL
135 B
Zig
6 lines
No EOL
135 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
try stdout.print("OK\n", .{});
|
|
} |