10 lines
74 B
Go
10 lines
74 B
Go
package main
|
|
|
|
func main() {
|
|
_ = 1 + 1
|
|
println("ok")
|
|
}
|
|
|
|
// Output:
|
|
// ok
|