10 lines
169 B
Text
10 lines
169 B
Text
|
|
#APPTYPE CONSOLE
|
||
|
|
|
||
|
|
DIM aint[] ={1, 2, 3}, astr[] ={"one", "two", "three"}, asng[] ={!1, !2, !3}
|
||
|
|
|
||
|
|
FOREACH DIM e IN ARRAYMERGE(aint, astr, asng)
|
||
|
|
PRINT e, " ";
|
||
|
|
NEXT
|
||
|
|
|
||
|
|
PAUSE
|