Reduce sleep time for test prog

This commit is contained in:
Derek Parker
2014-05-20 13:23:36 -05:00
parent 25783f23d6
commit 31064c20da
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -6,6 +6,6 @@ import (
) )
func main() { func main() {
time.Sleep(time.Second) time.Sleep(time.Millisecond)
fmt.Println("Hello, World!") fmt.Println("Hello, World!")
} }