1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00

[stdlib] add call to manually invoke functions

This commit is contained in:
Étienne Fildadut 2024-04-24 17:50:44 +02:00
parent bbf7b7a437
commit 892cb2c623
6 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,5 @@
--# run #--
--- return ---
15
--# saved #--
{}

View file

@ -0,0 +1,5 @@
--# run #--
--- return ---
5
--# saved #--
{}

View file

@ -0,0 +1,4 @@
:$func(x, y) = v
x + y + v
func!call[2, 3] = 10

View file

@ -0,0 +1,4 @@
:$func(x, y)
x + y
func!call[2, 3]