10 lines
314 B
Text
10 lines
314 B
Text
|
|
include "NSLog.incl"
|
||
|
|
|
||
|
|
CFStringRef local fn WelcomeToFutureBasic( person as CFStringRef, location as CFStringRef )
|
||
|
|
return fn StringWithFormat( @"Welcome %@! Glad you could join us from %@.", person, location )
|
||
|
|
end fn = NULL
|
||
|
|
|
||
|
|
NSLog( @"%@", fn WelcomeToFutureBasic( @"John Codemeister", @"Hawaii" ) )
|
||
|
|
|
||
|
|
HandleEvents
|