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