공식문서
A type that represents the structure and behavior of an app. 번역 : 앱의 구조와 동작을 나타내는 타입. // 선언 protocol App // 사용 @main struct MyApp: App { var body: some Scene { WindowGroup { Text("Hello, world!") } } }
A type that represents the structure and behavior of an app. 번역 : 앱의 구조와 동작을 나타내는 타입.
// 선언 protocol App
// 사용 @main struct MyApp: App { var body: some Scene { WindowGroup { Text("Hello, world!") } } }