mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
10 lines
129 B
Pony
10 lines
129 B
Pony
actor Main
|
|
var _env: Env
|
|
|
|
new create(env: Env) =>
|
|
_env = env
|
|
square(3)
|
|
|
|
fun square(num: I32): I32 =>
|
|
num * num
|