diff --git a/.gitignore b/.gitignore index 66fd13c..9ac3746 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,10 @@ # Dependency directories (remove the comment below to include it) # vendor/ + + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr \ No newline at end of file diff --git a/README.md b/README.md index 9cced59..df0d9b9 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# Wukong \ No newline at end of file +# wukong \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..ea39337 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module wukong + +go 1.16 diff --git a/mian.go b/mian.go new file mode 100644 index 0000000..6056b0e --- /dev/null +++ b/mian.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, Wu kong.") +}