RosettaCodeData/Task/Mad-Libs/Red/mad-libs.red

6 lines
276 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
phrase: ask "Enter phrase, leave line empty to terminate:^/"
while [not empty? line: input] [append phrase rejoin ["^/" line]]
words: parse phrase [collect [any [to "<" copy b thru ">" keep (b)]]]
foreach w unique words [replace/all phrase w ask rejoin [w ": "]]
print phrase