aboutsummaryrefslogtreecommitdiff
path: root/tests/callbacks.ek
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2023-08-15 21:41:29 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2023-08-15 21:41:29 +0300
commitbad9ab7479d66dfdb1c8e2d18c23fbcff9ec394b (patch)
treed43dd3a26685c9adc8201dfe1a4035418175c1eb /tests/callbacks.ek
parent5ffc39352ef0195697953e9318b8a17c79e7ae84 (diff)
downloadek-bad9ab7479d66dfdb1c8e2d18c23fbcff9ec394b.tar.gz
ek-bad9ab7479d66dfdb1c8e2d18c23fbcff9ec394b.zip
updates to syntax
Diffstat (limited to 'tests/callbacks.ek')
-rw-r--r--tests/callbacks.ek4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/callbacks.ek b/tests/callbacks.ek
index 0249065..9b9d649 100644
--- a/tests/callbacks.ek
+++ b/tests/callbacks.ek
@@ -1,4 +1,4 @@
-do_stuff(proc '(u32))
+do_stuff(proc @(u32))
{
proc();
}
@@ -13,5 +13,5 @@ other_proc()
main()
{
- do_stuff(other_proc as '(u32));
+ do_stuff(other_proc as @(u32));
}