RosettaCodeData/Task/Array-concatenation/FBSL/array-concatenation.fbsl

10 lines
169 B
Text
Raw Permalink Normal View History

2013-06-05 21:47:54 +00:00
#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