xxxxxxxxxx
13
let rm, txt, sentences;
function setup() {
txt = "This is a two sentence example. This is the second one. Hellow healoaf how are you. GO go go";
rm = RiTa.markov(4); // Initialize Markov model
rm.addText(txt); // Add text to model
sentences = rm.generate(2);
print(sentences)
}