20 lines
237 B
Go
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")
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|