RosettaCodeData/Task/Array-length/FutureBasic/array-length-2.basic

9 lines
139 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
void local fn DoIt
CFArrayRef array = @[@"apple",@"orange",@"cherry",@"grape",@"lemon"]
print len(array)
end fn
fn DoIt
HandleEvents