RosettaCodeData/Task/Tokenize-a-string/Icon/tokenize-a-string-1.icon

10 lines
171 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
procedure main()
A := []
"Hello,How,Are,You,Today" ? {
while put(A, 1(tab(upto(',')),=","))
put(A,tab(0))
}
every writes(!A,".")
write()
end