Comments
Loading Dream Comments...
You must be logged in to write a comment - Log In
main <:: [output](){
(" strawberry", " spaceship"," hug", " chair", " fish", " mannequin", " cat", " bananas", " plushie"," trackball") ::> nouns;
(""," luminous", " pink", " purple"," blue") ::> adjectives;
(" goes"," dance quickly", " has", " uses") ::> verbs;
noun <:: [](){nouns[.rand.(#nouns)]};
adj <:: [](){adjectives[.rand.(#adjectives)]};
verb <:: [](){verbs[.rand.(#verbs)]};
i<::6;{*(i.gt.0) :
output << ({(" The", " A", " No", " Some"," Every"," Three") ::>article;}[.rand.(#article)]) << adj << noun << verb << adj <<noun; i--; *};
};