k.zhang hace 4 años
commit
00601549f0
Se han modificado 4 ficheros con 19 adiciones y 0 borrados
  1. 3 0
      .idea/.gitignore
  2. 6 0
      .idea/vcs.xml
  3. 3 0
      go.mod
  4. 7 0
      main.go

+ 3 - 0
.idea/.gitignore

@@ -0,0 +1,3 @@
+
+# Default ignored files
+/workspace.xml

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

+ 3 - 0
go.mod

@@ -0,0 +1,3 @@
+module duoduo
+
+go 1.14

+ 7 - 0
main.go

@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main()  {
+	fmt.Println("hello duoduo!")
+}