delve/fixtures/livetestprog.go
2014-05-21 09:58:42 -05:00

17 lines
160 B
Go

package main
import (
"fmt"
"os"
"time"
)
func main() {
fmt.Println(os.Getpid())
time.Sleep(3 * time.Second)
for {
fmt.Println("Hello, world!")
}
}