Skip to content

Instantly share code, notes, and snippets.

@adhithyan15
Created May 10, 2015 23:52
While loop in Go
package main
import "fmt"
func main(){
counter := 1
for{
if counter > 10{
break;
}
fmt.Println("Hello")
counter++
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment