14 lines
229 B
Text
14 lines
229 B
Text
|
|
void local fn DoIt
|
||
|
|
CFArrayRef array = @[@"Alpha",@"Bravo",@"Charlie"]
|
||
|
|
print array
|
||
|
|
|
||
|
|
array = fn ArrayByAddingObjectsFromArray( array, @[@"Delta",@"Echo",@"FutureBasic"] )
|
||
|
|
print array
|
||
|
|
end fn
|
||
|
|
|
||
|
|
window 1
|
||
|
|
|
||
|
|
fn DoIt
|
||
|
|
|
||
|
|
HandleEvents
|