diff options
author | Patrick Quist <partouf@gmail.com> | 2022-07-18 20:18:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 20:18:36 +0200 |
commit | 9b9ccc681863c3d903ead4b27f2647f32a71022a (patch) | |
tree | cbc2a611f712c0ed231e2cac058c0ece595b5ea1 /examples | |
parent | ddd4dd33fb3398ba9099fd91dc374df2c4006412 (diff) | |
download | compiler-explorer-9b9ccc681863c3d903ead4b27f2647f32a71022a.tar.gz compiler-explorer-9b9ccc681863c3d903ead4b27f2647f32a71022a.zip |
fix pony examplegh-3667
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pony/default.pony | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/pony/default.pony b/examples/pony/default.pony index cf1e99afb..b41edf35a 100644 --- a/examples/pony/default.pony +++ b/examples/pony/default.pony @@ -3,6 +3,7 @@ actor Main new create(env: Env) => _env = env + square(3) fun square(num: I32): I32 => num * num |