#import int main() autoreleasepool for int i in 1 .. 100 s := '' if i % 3 == 0 s << 'Fizz' if i % 5 == 0 s << 'Buzz' Log( '(%d) %@', i, s ) return 0