valkyrie-parser 0.2.5

The hand write parser of valkyrie language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if a {1}
if a {1} else {2}
if a {1} else if b {2}
if a {1} else if b {2} else {3}
if a {1} else if b {2} else if c {3}
if a {1} else if b {2} else if c {3} else {4}


if let (x, y) = point {
    print("({x}, {y})");
}

if let Failure(error) = x {
    print(error);
}