b913edcd5e
On the road to beta is the new Minils AST, for now : * Heptagon and Obc AST changes, * Java code generation, * Recursives Qualnames, * Various bug fixes, * Added partial application for iterators, For instance: ... = map<<n>> (f<<se>>)((t1, t1'))(t2, t3) is translated to: for(int i =...) ... = f(t1, t1', t2[i], t3[i])
7 lines
100 B
Text
7 lines
100 B
Text
|
|
node f() returns ()
|
|
var t1,t2 : int^4;
|
|
let
|
|
t1 = [3, 5, 6, 7];
|
|
t2 = map (+) <<4>> (4^4,t1);
|
|
tel
|