view GeoQuiz/GuessThePopulation.swift @ 6:1946bbfde4af

reformat data structures
author Dennis C. M. <dennis@denniscm.com>
date Thu, 29 Sep 2022 12:00:17 +0200
parents
children
line wrap: on
line source

//
//  GuessThePopulation.swift
//  GeoQuiz
//
//  Created by Dennis Concepción Martín on 29/9/22.
//

import SwiftUI

struct GuessThePopulation: View {
    var body: some View {
        Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
    }
}

struct GuessThePopulation_Previews: PreviewProvider {
    static var previews: some View {
        GuessThePopulation()
    }
}