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 } }
To embed this project on your website, copy the following code and paste it into your website's HTML: