3
0

add test go package

This commit is contained in:
2025-08-15 18:02:49 +08:00
parent 9b5fd1d2ad
commit 60ca0561aa
4 changed files with 18 additions and 0 deletions

5
packages/README.md Normal file
View File

@@ -0,0 +1,5 @@
# test readme in packages
...

5
packages/aa/aa.go Normal file
View File

@@ -0,0 +1,5 @@
package aa
func AA(x, y int) int {
return x + y + 1
}

5
packages/bb.go Normal file
View File

@@ -0,0 +1,5 @@
package go_subdir
func BB(x, y int) int {
return x + y + 4
}

3
packages/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module www.zhao1012112796.top/testg/go_subdir
go 1.25.0