Section6.63

This commit is contained in:
2023-10-07 08:55:56 +02:00
parent dda560aaa8
commit ffb74ec6b0
2 changed files with 35 additions and 0 deletions

14
Section6/63.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import "fmt"
func main () {
i := 0
loop:
if i < 5{
fmt.Println(i)
i++
goto loop
}
}