1
0
forked from GitHub/gf-core

Transfer: changed syntax to remove the mandatory type annotation in let.

This commit is contained in:
bringert
2005-12-09 11:45:57 +00:00
parent ce8376885c
commit ccfe7fb119
21 changed files with 80 additions and 95 deletions

View File

@@ -158,9 +158,9 @@ argument + 1.
To give local definition to some names, use:
```
let x1 : T1 = exp1
let x1 = exp1
...
xn : Tn = expn
xn = expn
in exp
```