如果省略循环条件,该循环就不会结束,因此无限循环可以写得很紧凑。
forever.go
package mainfunc main() { for { }}
package main
func main() {
for {
}
本文档使用 BookStack 构建