adder: make test pass properly

This commit is contained in:
surtur 2022-03-29 21:55:10 +02:00
parent 8291cc2f08
commit ee479e5408
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -1,5 +1,5 @@
package integers
func Add(x, y int) int {
return 4
return x + y
}