d
Size: a a a
d
d
A
A
const std = @import("std");
pub fn main() !void {
// If this program is run without stdout attached, exit with an error.
const stdout_file = try std.io.getStdOut();
// If this program encounters pipe failure when printing to stdout, exit
// with an error.
try stdout_file.write("Hello, world!\n");
}
.
.
.
.
.
.
モ
.
モ
A
モ
A
const std = @import("std");
pub fn main() !void {
// If this program is run without stdout attached, exit with an error.
const stdout_file = try std.io.getStdOut();
// If this program encounters pipe failure when printing to stdout, exit
// with an error.
try stdout_file.write("Hello, world!\n");
}
const std = @import("std");
pub fn main() !void {
const stdout_file = try std.io.getStdOut();
try stdout_file.write("Hello, world!\n");
}
zig build-exe --strip --release-small main.zig
strip --strip-all main
.
const std = @import("std");
pub fn main() !void {
const stdout_file = try std.io.getStdOut();
try stdout_file.write("Hello, world!\n");
}
zig build-exe --strip --release-small main.zig
strip --strip-all main
.
A