Quet Zal
Quet Zal
Right now `.tl` files are compiled to `generated.rs` that is put into cargo's `OUT_DIR` and then included from source code. This breaks rust-analyzer's go-to-definition feature (as it jumps to file...
Right now tokenizer loads whole corpus in memory and it becomes an issue for large files. Is it possible to read corpus file line-by-line or split it in any other...
``` func Foo(a int) int { return if a > 100 { 0 } else { -1 } } b := switch c { case 0: -1 case 1: 1...
ADT
Needs generics. ``` type Maybe a = Just a | Nothing type Either a b = Left a | Right b type Tree a = Node a | (Tree a,...