// Playground - noun: a place where people can play

import UIKit

protocol Contract {
    
    //Type not allowed here 
    enum Response: Int {
        case Success = 0
        case Failed = 1
    }
}

var str = "Hello, playground"