struct ContentView: View {
   var body: some View {
      Text("Hello World")
         .font(.largeTitle)
         .background(Color.gray)
   }
}