This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.
- Haskell is a functional programming language.
| #import <UIKit/UIKit.h> | |
| @interface ActivityController : NSObject | |
| + (instancetype)presentActivityItems:(NSArray *)activityItems | |
| fromViewController:(UIViewController *)viewController | |
| barButtonItem:(UIBarButtonItem *)item; | |
| @end |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>--project-company</key> | |
| <string>Elegant Chaos</string> | |
| <key>--company-id</key> | |
| <string>com.elegantchaos</string> | |
| <key>--keep-undocumented-objects</key> | |
| <false/> |
This is a summary of the "Learn You A Haskell" online book under http://learnyouahaskell.com/chapters.
| #import <Cocoa/Cocoa.h> | |
| BOOL VerifyAppStoreReceipt(); | |
| BOOL VerifyAppStoreReceiptData(NSData *data); | |
| NSURL *BackupReceiptURL(); | |
| void BackupAppStoreReceipt(); | |
| NSData *MACAddressData(); | |
| NSDictionary *DictionaryFromAppStoreReceipt(NSData *fullData); |
| { | |
| name = <$name$>, | |
| managedObjectClassName = <$managedObjectClassName$>, | |
| renamingIdentifier = <$renamingIdentifier$>, | |
| isAbstract = <$isAbstract$>, | |
| userInfo = <$userInfo$>, | |
| relationships = ( | |
| <$foreach Relationship noninheritedRelationships do$> | |
| { | |
| name = <$Relationship.name$>, |
| # bash/zsh completion support for core Git. | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> | |
| # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # The contained completion routines provide support for completing: | |
| # | |
| # *) local and remote branch names | |
| # *) local and remote tag names |