11 lines
179 B
Text
11 lines
179 B
Text
|
|
NewList MyStrings.s()
|
||
|
|
|
||
|
|
For i=1 To 5
|
||
|
|
AddElement(MyStrings())
|
||
|
|
MyStrings()=StringField("Hello,How,Are,You,Today",i,",")
|
||
|
|
Next i
|
||
|
|
|
||
|
|
ForEach MyStrings()
|
||
|
|
Print(MyStrings()+".")
|
||
|
|
Next
|