koi_parser/
lib.rs

1
2pub mod combinator;
3pub mod lexer;
4pub mod token_tree;
5
6// enum X {
7//     Y,
8//     Z
9// }
10
11// fn x() {
12//     let x  = X::Y;
13//     match x {
14//         X::Y => {},
15//         X::Z => {},
16//     };
17//     loop {
18//         1
19//     };
20//     if true {
21
22//     } else {
23
24//     };
25//     let y  = ();
26// }