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;