import SwiftUI @main struct CalcPadApp: App { var body: some Scene { WindowGroup { ContentView() } .defaultSize(width: 800, height: 600) } }