mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 17:34:33 -05:00
5 lines
101 B
Zig
5 lines
101 B
Zig
// Type your code here, or load an example.
|
|
export fn square(num: i32) i32 {
|
|
return num * num;
|
|
}
|