Sign in
opensecura
/
3p
/
nicta
/
cogent
/
467b5dd3d8154baaa2ba188fa7382b79cdb70b6e
/
.
/
minigent
/
examples
/
0_basics
/
05-let
/
in.minigent
blob: 41bacacae5bfc0b9cc0d3da2f5cfd52779f1885e [
file
]
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
;