* Finally, a real "let" syntax: `let x = ...; ... z = ...; in ...'.

This commit is contained in:
Eelco Dolstra 2006-10-02 15:52:44 +00:00
parent 7581cfdee4
commit ac19b333b3
5 changed files with 21 additions and 3 deletions

View file

@ -0,0 +1,14 @@
let
f = z:
let
x = "foo";
y = "bar";
body = 1; # compat test
in
z + x + y;
arg = "xyzzy";
in f arg