mirror of
https://github.com/ziglang/zig.git
synced 2026-01-28 10:15:24 +00:00
8 lines
128 B
Zig
8 lines
128 B
Zig
const x: i32 = 42;
|
|
export fn foo() i32 {
|
|
return x;
|
|
}
|
|
comptime {
|
|
@export(foo, .{ .name = "bar", .linkage = .Strong });
|
|
}
|