delve/_fixtures/testnextprog.go
2014-11-07 23:45:54 -06:00

44 lines
432 B
Go

package main
import (
"fmt"
"runtime"
"time"
)
func sleepytime() {
time.Sleep(100 * time.Millisecond)
}
func helloworld() {
fmt.Println("Hello, World!")
}
func testnext() {
var (
j = 1
f = 2
)
for i := 0; i <= 5; i++ {
j += j * (j ^ 3) / 100
if i == f {
fmt.Println("foo")
break
}
helloworld()
}
helloworld()
}
func main() {
runtime.LockOSThread()
for {
testnext()
fmt.Println("foo")
}
}