GH-194 let patterns #697

Merged
zxq9 merged 4 commits from GH-194-let-patterns into lima 2019-12-17 01:04:50 +09:00
Showing only changes of commit c3aaa01713 - Show all commits

View File

@ -11,3 +11,5 @@ contract LetPatterns =
let {x = i, y = j} = r
x + a + b + n + i + j
entrypoint lc(xs : list(option(int))) : list(int) =
[ x | Some(x) <- xs ]