Add integers module
This commit is contained in:
6
integers/integers.go
Normal file
6
integers/integers.go
Normal file
@@ -0,0 +1,6 @@
|
||||
package integers
|
||||
|
||||
// Add two numbers together
|
||||
func Add(x, y int) int {
|
||||
return x + y
|
||||
}
|
||||
Reference in New Issue
Block a user