valkyrie-parser 0.2.5

The hand write parser of valkyrie language
Documentation
namespace std.create.test;

try {

}

try String? {

}

try Option<T> {

}

try Result<T, Noop> {
    print("try");
}
.catch {
    type RuntimeError:
        print("RuntimeError")
}?
.match {
    case Some(_):
        print("Some"),
}