mirror of
https://github.com/JJK96/PIClin
synced 2026-06-06 15:54:31 +00:00
8 lines
227 B
Zig
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);
|
|
}
|