Skip to content

Instantly share code, notes, and snippets.

@xvbnm48
Created March 4, 2022 14:27
Show Gist options
  • Save xvbnm48/25535990895ac3b482eab909b11ed111 to your computer and use it in GitHub Desktop.
Save xvbnm48/25535990895ac3b482eab909b11ed111 to your computer and use it in GitHub Desktop.
for loop golang
package main
import "fmt"
func main(){
for i := 1; i <= 10; i++ {
fmt.Println("sakura endo cantik", i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment