This commit is contained in:
Liang Ding 2014-08-19 18:04:24 +08:00
parent aff54214ff
commit 25aabd33a9
3 changed files with 10 additions and 16 deletions

View File

@ -2,11 +2,8 @@ package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Hello, 世界")
time.Sleep(time.Second)
fmt.Println("Hello, 世界")
}

View File

@ -1,12 +0,0 @@
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Hello, 世界")
time.Sleep(time.Second)
}

9
data/src/time/time.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, 世界")
}