add test samples

This commit is contained in:
lyyyuna 2020-07-10 10:52:01 +08:00
parent 92c3420273
commit 7848a4ae06
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,3 @@
module example.com/simple-project
go 1.11

View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("hello, world.")
}