//
//  ViewController.swift
//  HelloWorldSwift
//
//  Created by pgAgent on 9/12/2014.
//  Copyright (c) 2014 RJM Programming. All rights reserved.
//

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    @IBAction func clickAction(sender: AnyObject) {
        println("Hello RJM Programming Swift World")
    }

}

