In Prolog, it is possible to define [definite clause grammars](https://en.wikipedia.org/wiki/Definite_clause_grammar) like this one: ``` sentence --> noun_phrase, verb_phrase. noun_phrase --> det, noun. verb_phrase --> verb, noun_phrase. det --> [the]. det --> [a]. noun --> [cat]. noun --> [bat]. verb --> [eats]. ``` Does an equivalent notation exist in Rubylog?
In Prolog, it is possible to define definite clause grammars like this one:
Does an equivalent notation exist in Rubylog?