delve/fixtures/testprog.go

12 lines
112 B
Go
Raw Normal View History

2014-05-20 18:23:35 +00:00
package main
import (
"fmt"
"time"
)
func main() {
time.Sleep(time.Second)
fmt.Println("Hello, World!")
}