const std = #import("std"); comptime { _ = _start; } const _start = fn () noreturn { const result = #import("main").main(); std.os.exit(result); }