aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPatrick Quist <partouf@gmail.com>2022-07-18 20:18:36 +0200
committerGitHub <noreply@github.com>2022-07-18 20:18:36 +0200
commit9b9ccc681863c3d903ead4b27f2647f32a71022a (patch)
treecbc2a611f712c0ed231e2cac058c0ece595b5ea1 /examples
parentddd4dd33fb3398ba9099fd91dc374df2c4006412 (diff)
downloadcompiler-explorer-9b9ccc681863c3d903ead4b27f2647f32a71022a.tar.gz
compiler-explorer-9b9ccc681863c3d903ead4b27f2647f32a71022a.zip
fix pony examplegh-3667
Diffstat (limited to 'examples')
-rw-r--r--examples/pony/default.pony1
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