import SwiftUI

struct ContentView: View {
   var body: some View {
      VStack {
         Text("Hello World!")
            .padding()
         Spacer()
      }
   }
}