first commit

This commit is contained in:
B4D_US3R 2025-05-20 11:27:33 +05:00
commit c0d5d714a9
2 changed files with 8 additions and 0 deletions

5
add.go Normal file
View file

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