valkyrie-parser 0.2.5

The hand write parser of valkyrie language
Documentation
a {

}


s(args) {
    print("hello")
}



chain
    .{ body }
    .map {
        print("hello")
    }
    .select {
        $x > 0
    }
    .reject {
        $x > 5
    }