13 lines
172 B
Text
13 lines
172 B
Text
|
|
include "NSLog.incl"
|
||
|
|
|
||
|
|
UInt64 i = 1
|
||
|
|
|
||
|
|
while ( i < ULLONG_MAX )
|
||
|
|
NSLog( @"%llu\n", i )
|
||
|
|
i++
|
||
|
|
wend
|
||
|
|
|
||
|
|
// NSLog( @"Maximum Unsigned long long: %llu", ULLONG_MAX )
|
||
|
|
|
||
|
|
HandleEvents
|