Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 270 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 270 Bytes

objcswitch

An experiment with blocks, objective-C, and adding features to the language.

The implementation lets you write stuff like that :

[[@"foo" switch]
 case:@"bar" :^{ success = NO; }
 case:@"baz" :^{ success = NO; }
 case:@"foo" :^{ success = YES; }
 ];