heptagon/test/good/tuple_args.ept

10 lines
129 B
Plaintext
Raw Normal View History

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