for while in go code example
Example 1: golang while loop
package main
import "fmt"
func main(){
//only one type of look in golang. A for loop. to make a while loop simple
//emit all statments but the bools
var x int = 10
for x > 0{
fmt.Println(x)//this will print all numbers from 10-1
x--//decrement the x to make it go down by one each loop
}
}
Example 2: go while
C's while is spelled for in Go.
package main
import "fmt"
func main() {
sum := 1
for sum < 1000 {
sum += sum
}
fmt.Println(sum)
}