brintos

brintos / llvm-project-archived public Read only

0
0
Text · 189 B · e3f0162 Raw
9 lines · plain
1#import <Foundation/Foundation.h>2 3int main() {4  NSOrderedSet *orderedSet =5      [NSOrderedSet orderedSetWithArray:@[@1,@2,@3,@1]];6  NSLog(@"%@",orderedSet);7  return 0; // break here8}9