mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
9 lines
145 B
Zig
9 lines
145 B
Zig
const print = @import("std").debug.print;
|
|
|
|
pub fn main() void {
|
|
var x: i32 = undefined;
|
|
x = 1;
|
|
print("{d}", .{x});
|
|
}
|
|
|
|
// exe=succeed
|