8 lines
205 B
Text
8 lines
205 B
Text
decl string text
|
|
set text "Hello,How,Are,You,Today"
|
|
decl string<> tokens
|
|
set tokens (split text ",")
|
|
for (decl int i) (< i (size tokens)) (inc i)
|
|
out tokens<i> "." console
|
|
end for
|
|
out endl console
|