Hello/Hello/View.swift

//
//  View.swift
//  Hello
//
//  Created by Mark Meretzky on 10/17/18.
//  Copyright © 2018 New York University School of Professional Studies. All rights reserved.
//

import UIKit;

class View: UIView {

    
    // Only override draw() if you perform custom drawing.
    // An empty implementation adversely affects performance during animation.
    
    override func draw(_ rect: CGRect) {
        // Drawing code
        let s: String = "Hello, World!";
        let point: CGPoint = CGPoint(x: 0.0, y: 0.0);
        s.draw(at: point, withAttributes: nil);
    }
 

}