package main

import "fmt"

func main() {
    counter := 0
    for counter < 5 {
        fmt.Println("Counter:", counter)
        counter++
    }
}