RosettaCodeData/Task/String-prepend/FutureBasic/string-prepend.basic
2023-07-01 13:44:08 -04:00

11 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