summaryrefslogtreecommitdiff
path: root/Swift502/Swift502App.swift
blob: c619f65327319e3fbf40554d7e9749fce31cfac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import SwiftUI

@main
struct Swift502App: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}