struct ContentView: View {
   var body: some View {
      Text("Hello World")
         .font(.largeTitle)
         .underline()
         .fontWeight(.heavy)
         .shadow(radius: 1, x: 1, y: 1)
   }
}