RosettaCodeData/Task/Loops-Foreach/Objective-C/loops-foreach-1.m

6 lines
73 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
NSArray *collect;
2024-04-19 16:56:29 -07:00
// ...
for (Type i in collect) {
2023-07-01 11:58:00 -04:00
NSLog(@"%@", i);
}