go project
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-01 14:39:55 +08:00
parent 23ef06b899
commit 31c2b4b7a2
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module hello-project
go 1.19

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("hello, world\n")
}