struct ContentView: View {
   var body: some View {
      VStack {
         Text("Hello World!", comment: "This is a welcome message")
            .padding()
         Spacer()
      }
   }
}