Dmitry Telenkov il y a 1 an
Parent
commit
1cdb7c2eec
2 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 3 0
      go/go.mod
  2. 7 0
      go/test.go

+ 3 - 0
go/go.mod

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

+ 7 - 0
go/test.go

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