5 lines
89 B
Text
5 lines
89 B
Text
s$ = "Hello,How,Are,You,Today"
|
|
a$[] = strsplit s$ ","
|
|
for s$ in a$[]
|
|
write s$ & "."
|
|
.
|