package main
import "fmt"
func main() {
x := 2
goto Ttt
D:
switch x {
case 1:
fmt.Println("one")
case 2:
fmt.Println("two")
x = 3
case 3:
fmt.Println("three")
x += 4
case 4:
fmt.Println("Four")
x = 1
default:
fmt.Println("other")
}
goto Ttt
Ttt:
switch x {
case 1:
fmt.Println("one")
x = 3
goto D
case 2:
goto D
case 3:
fmt.Println("three")
x++
goto D
case 4:
fmt.Println("Four")
default:
fmt.Println("other")
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: