import UIKit
func Question() {
var questiontext : String
var answer : Bool
init(text: String , correctanswer: Bool ){ //error in this point : Initializers may only be declared within a type
questiontext = text
answer = correctanswer
}
}
Как я могу решить эту проблему?