14 lines
152 B
Text
14 lines
152 B
Text
|
|
include "NSLog.incl"
|
||
|
|
|
||
|
|
long num
|
||
|
|
|
||
|
|
for num = 1 to 10
|
||
|
|
if ( num mod 5 )
|
||
|
|
NSLog(@"%ld, \b",num)
|
||
|
|
else
|
||
|
|
NSLog(@"%ld",num)
|
||
|
|
end if
|
||
|
|
next
|
||
|
|
|
||
|
|
HandleEvents
|