delve/fixtures/testprog.go
2014-05-20 13:23:36 -05:00

12 lines
117 B
Go

package main
import (
"fmt"
"time"
)
func main() {
time.Sleep(time.Millisecond)
fmt.Println("Hello, World!")
}