KeliLanguage / compiler

The compiler for Keli
https://keli-language.gitbook.io/doc/specification/
Apache License 2.0
171 stars 1 forks source link

Reduce tagged union syntax #59

Closed wongjiahau closed 5 years ago

wongjiahau commented 5 years ago

From

List = tags.
    case(.Nil)
    case(.Cons($.value(Int) next(List))

To

List = cases
    .Nil
    .Cons($.value(Int) next(List))