As was discussed in #7 , generating a random sequence from a BNF grammar is a good feature. The erratic.js serves as a good example of behavior to implement. My only question is:
should the generated sequence be returned as a Vec<Terminals> or as a String?
My assumptions for this feature are:
pseudo random is sufficient
allowing users to tweak the probabilities per node is out of scope
As was discussed in #7 , generating a random sequence from a BNF grammar is a good feature. The erratic.js serves as a good example of behavior to implement. My only question is:
Vec<Terminals>
or as aString
?My assumptions for this feature are: