master
 1#target=x86_64-linux-selfhosted
 2#target=x86_64-windows-selfhosted
 3#target=x86_64-linux-cbe
 4#target=x86_64-windows-cbe
 5#target=wasm32-wasi-selfhosted
 6#update=initial version
 7#file=main.zig
 8const std = @import("std");
 9pub fn main() !void {
10    try std.fs.File.stdout().writeAll("good morning\n");
11}
12#expect_stdout="good morning\n"
13#update=change the string
14#file=main.zig
15const std = @import("std");
16pub fn main() !void {
17    try std.fs.File.stdout().writeAll("おはようございます\n");
18}
19#expect_stdout="おはようございます\n"