12 lines
202 B
Zig
12 lines
202 B
Zig
|
const std = @import("std");
|
||
|
|
||
|
const print = std.debug.print;
|
||
|
|
||
|
export fn ipc_hello() callconv(.C) void {
|
||
|
print("Hello!\n", .{});
|
||
|
}
|
||
|
|
||
|
export fn ipc_bye() callconv(.C) void {
|
||
|
print("Bye!\n", .{});
|
||
|
}
|