1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-28 17:19:31 +00:00
anselme/test/tests/function assignement.ans
2023-12-28 17:03:54 +01:00

22 lines
136 B
Text

:a = 5
:$ f(p)
@a
:$ f(p) = v
|v={v}
a = v
:$ f(p) = v::string
|v2={v}
a = p
|{f(a)}
f(3) = 50
|{f(a)}
f(3) = "ok"
|{f(a)}