Files
2023-10-04 15:11:24 +02:00

10 lines
91 B
Go

package main
import "fmt"
func main() {
for i := 0; i < 10; i++ {
fmt.Println(i)
}
}