运行
获取您自己的
网站
×
更改方向
更改主题,明暗
前往 Spaces
package main import ("fmt") func main() { temperature := 14 if (temperature > 15) { fmt.Println("It is warm out there.") } // this raises an error else { fmt.Println("It is cold out there.") } }
./prog.go:9:3: 语法错误:意外发现 else,但预期发现 }