Section6.63
This commit is contained in:
14
Section6/63.go
Normal file
14
Section6/63.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main () {
|
||||
i := 0
|
||||
|
||||
loop:
|
||||
if i < 5{
|
||||
fmt.Println(i)
|
||||
i++
|
||||
goto loop
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user