include "NSLog.incl" _W = 87 local fn BuildHTMLTable NSinteger i, j CFMutableStringRef mutStr = fn MutableStringWithCapacity(0) MutableStringAppendString( mutStr, @"\n" ) MutableStringAppendString( mutStr, @" " ) for j = 1 to 3 MutableStringAppendFormat( mutStr, @"", _W + j ) next MutableStringAppendString( mutStr, @"\n" ) for i = 1 to 3 MutableStringAppendFormat( mutStr, @" ", i ) for j = 1 to 3 MutableStringAppendFormat( mutStr, @"", rnd( 10000 ) ) next MutableStringAppendString( mutStr, @"\n" ) next MutableStringAppendString( mutStr, @"
%c
%d%d
" ) NSLog( @"%@", mutStr ) end fn fn BuildHTMLTable HandleEvents