integers: add doc for Add function

This commit is contained in:
vinchent 2024-09-10 13:10:08 +02:00
parent bdef054bb6
commit ad9df93776

View File

@ -1,5 +1,6 @@
package integers
// Add takes two integers and returns the sum of them
func Add(x, y int) int {
return x + y
}