lambda2wasm icon indicating copy to clipboard operation
lambda2wasm copied to clipboard

A Lambda expression compiler targeting web assembly.

Results 3 lambda2wasm issues
Sort by recently updated
recently updated
newest added

### how to reproduce the error ``` apply = f:(a -> b). x: a. f x. inc = x:I32. x + 1#I32. main = apply inc 2#I32. ``` this may...

bug
help wanted
good first issue
need investigation

lambda2wasm has some primitive operators such as `+` and `-`. these are handled specially in type checker and code generator, but I hope them not to be, to reduce complexity...

enhancement
help wanted
design

Current type checker has (at least) three big problems. - Insufficient type error message (lack of information of code line where type check fails, constraints of unification variable do not...

help wanted
design