mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
16 lines
445 B
Text
16 lines
445 B
Text
#target=x86_64-linux-selfhosted
|
|
#target=x86_64-linux-cbe
|
|
#update=initial version
|
|
#file=main.zig
|
|
const std = @import("std");
|
|
pub fn main() !void {
|
|
try std.io.getStdOut().writeAll("good morning\n");
|
|
}
|
|
#expect_stdout="good morning\n"
|
|
#update=change the string
|
|
#file=main.zig
|
|
const std = @import("std");
|
|
pub fn main() !void {
|
|
try std.io.getStdOut().writeAll("おはようございます\n");
|
|
}
|
|
#expect_stdout="おはようございます\n"
|