mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-07-06 01:37:10 +02:00
7 lines
91 B
Go
7 lines
91 B
Go
package math
|
|
|
|
// Add adds two integer values.
|
|
func Add(a int, b int) int {
|
|
return a + b
|
|
}
|