12 lines
165 B
Text
12 lines
165 B
Text
|
|
include "NSLog.incl"
|
||
|
|
|
||
|
|
void local fn DoIt
|
||
|
|
CFStringRef s = @"world!"
|
||
|
|
s = fn StringByAppendingString( @"Hello ", s )
|
||
|
|
NSLog(@"%@",s)
|
||
|
|
end fn
|
||
|
|
|
||
|
|
fn DoIt
|
||
|
|
|
||
|
|
HandleEvents
|