[ast2C] Applications to values

This commit is contained in:
dsac
2022-12-18 09:41:22 +01:00
parent 007c5b2862
commit 1d4e1820e4
5 changed files with 60 additions and 14 deletions

10
src/test2.node Normal file
View File

@@ -0,0 +1,10 @@
node aux (i: int) returns (a, b: int);
let
a = 1 -> pre i;
b = 2 * i -> (3 * pre i);
tel
node n (i: int) returns (o1, o2: int);
let
(o1, o2) = aux (i);
tel