package hello import ( "fmt" "net/http" ) func Handler(w http.ResponseWriter, _ *http.Request) { _, _ = w.Write([]byte("Hello, World!")) if true { if true { if true { fmt.Println("Deeply nested condition") } } } }