14 lines
267 B
Text
14 lines
267 B
Text
include "NSLog.incl"
|
|
|
|
NSInteger door, square = 1, increment = 3
|
|
|
|
for door = 1 to 100
|
|
if ( door == square )
|
|
NSLog( @"Door %ld is open.", door )
|
|
square += increment : increment += 2
|
|
else
|
|
NSLog( @"Door %ld is closed.", door )
|
|
end if
|
|
next
|
|
|
|
HandleEvents
|