Closed ylixir closed 5 years ago
currently the interface looks like: p::or($thing1, $thing2). it is unnatural to read parsers like: "or thing one thing two".
p::or($thing1, $thing2)
english reads like "thing one or thing two". our interface should be able to be used like $thing1->or($thing2).
$thing1->or($thing2)
This would be far more literate.
closed by #17
currently the interface looks like:
p::or($thing1, $thing2)
. it is unnatural to read parsers like: "or thing one thing two".english reads like "thing one or thing two". our interface should be able to be used like
$thing1->or($thing2)
.This would be far more literate.