heptagon/test/good/tuple_args.ept
Cédric Pasteur 69a5ad8df8 Fixed code generation of n-dim static arrays
Also added some tests.
2011-07-21 11:19:07 +02:00

10 lines
129 B
Plaintext
Executable file

fun f(a,b:int) returns (u,v:int)
let
u = a + b;
v = a * b;
tel
fun h(a,b:int) returns (u,v:int)
let
(u,v) = f(f(a,b));
tel