package main

import "fmt"

func main() {
    var a = 0
    var b = 12
    var cond bool = (a < b)
loop:
    cond = (a < b)
    if cond {
        fmt.Println(a)
        a++
        goto loop
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: