9 lines
96 B
Go
9 lines
96 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
for i := 1;; i++ {
|
|
fmt.Println(i)
|
|
}
|
|
}
|