This commit is contained in:
B4D_US3R 2025-05-20 11:54:10 +05:00
parent 1c87d142cc
commit 2dee2f05e1

5
v1/add.go Normal file
View file

@ -0,0 +1,5 @@
package testmod
func Add(a, b int) int {
return a + b
}