Sign in
opensecura
/
3p
/
nicta
/
cogent
/
refs/heads/master
/
.
/
minigent
/
examples
/
0_basics
/
05-let
/
in.minigent
blob: 41bacacae5bfc0b9cc0d3da2f5cfd52779f1885e [
file
] [
edit
]
testLet
:
U8
->
U8
;
testLet x
=
let
y
=
x
+
1
in
y
-
1
end
;
testLetNested
:
U8
->
U8
;
testLetNested x
=
let
z
=
let
y
=
x
+
1
in
y
-
1
end
in
let
q
=
z
+
1
in
q
+
z
end
end
;