Files
go-example/hello/hello.go
2026-01-03 17:57:11 +08:00

20 lines
237 B
Go

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")
}
}
}
}