This commit is contained in:
Mikhail Rybalka 2023-03-07 21:42:12 +03:00
commit 711ec53b52
2 changed files with 8 additions and 0 deletions

5
addition.go Normal file
View File

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

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/RuSPanzer/calc
go 1.20