github.com/giovannyortegon/go@v0.0.0-20220115155912-8890063f5bdd/src/Fundamentals/ControlFOR/usingFor.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  func main() {
     6  	hello:= "hola Golang"
     7  
     8  	for i:= 0; i <= 10; i++ {
     9  		fmt.Println(i,string(hello[i]))
    10  	}
    11  }