view GeoQuiz/Tests/Protocols.swift @ 3:4dbe0cd9dadc

first game prototype
author Dennis C. M. <dennis@denniscm.com>
date Thu, 22 Sep 2022 10:42:39 +0200
parents
children
line wrap: on
line source

//
//  Protocols.swift
//  GeoQuiz
//
//  Created by Dennis Concepción Martín on 21/9/22.
//

import Foundation

//protocol MyProtocol {
//    associatedtype T
//    
//    var myVar: T { get set }
//}
//
//class MyClass {
//    typealias T = String
//    
//    let myVar: T
//    
//    init() {
//        myVar = "Hello, world!"
//    }
//}