mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
10 lines
145 B
Zig
10 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
|