package main
import ("fmt")
func main(){
fmt.Println("hi")
for i:=0;i<5;i++{
fmt.Println(i)
}
for i:=0; i<22;i++{
if i==10{
break
}
fmt.Println(i)
}
for j:=0; j<22;j++{
if j==10{
continue
}
fmt.Println(j)
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: