commit 57ace3e3330f7e8c1813269d635a1c214e44c41b Author: xing Date: Mon Aug 22 09:36:13 2022 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..700f416 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +wp-go.iml \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1e0806a --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github/fthvgb1/wp-go + +go 1.18 diff --git a/main.go b/main.go new file mode 100644 index 0000000..a3dd973 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +}