Files
2025-09-01 15:54:19 +02:00

8 lines
227 B
Zig

const win32 = @import("win32");
extern fn printf(format: [*:0]const u8, ...) void;
pub fn main() void {
printf("Hello, world!\n");
_ = win32.system.threading.WinExec("calc.exe", win32.everything.SW_SHOW.SHOWNORMAL);
}