mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 12:33:04 -04: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;
|
|
}
|