This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public struct Person { | |
| public var firstName: String | |
| public var middleName: String? | |
| public var lastName: String | |
| public var ageInYears: Int | |
| public var fullName: String { | |
| return [firstName, middleName, lastName].flatMap{ $0 }.joinWithSeparator(" ") | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | tell application "iTunes" | |
| set vol to sound volume | |
| set vol to vol - 10 | |
| if vol is less than 0 then | |
| set vol to 0 | |
| end if | |
| set the sound volume to vol | |
| end tell | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // | |
| // ViewController.swift | |
| // citizencrossfit | |
| // | |
| // Created by Mark Jackson on 17/11/2014. | |
| // Copyright (c) 2014 Mark Jackson. All rights reserved. | |
| // | |
| import UIKit | |
| import Alamofire | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // | |
| // PrintLocalesController.m | |
| // NSFormatterTest | |
| // | |
| // Created by Maciek Grzybowski on 02.04.2014. | |
| // | |
| #import "PrintLocalesController.h" | |
| @interface PrintLocalesController () | 
