Python
Middle
GO
Вопрос: Как написать for как while?
Ответы
package main
import "fmt"
func main() {
i := 0
for i < 3 {
fmt.Println(i)
i++
}
}