comparison GeoQuiz/Tests/ProtocolTest.swift @ 3:4dbe0cd9dadc

first game prototype
author Dennis C. M. <dennis@denniscm.com>
date Thu, 22 Sep 2022 10:42:39 +0200
parents
children
comparison
equal deleted inserted replaced
2:5b7c89bd45c3 3:4dbe0cd9dadc
1 //
2 // ProtocolTest.swift
3 // GeoQuiz
4 //
5 // Created by Dennis Concepción Martín on 21/9/22.
6 //
7
8 import Foundation
9
10 //protocol MyProtocol {
11 // associatedtype T
12 //
13 // var myVar: T { get set }
14 // func sayHello()
15 //}
16 //
17 //extension MyProtocol {
18 // func sayHello() {
19 // print("Hello")
20 // }
21 //}
22
23