Change Sum function incompatible

This commit is contained in:
Alexey Vanin 2023-11-27 14:55:38 +03:00
parent e3709e0f7d
commit 0726a0b58f

View file

@ -1,6 +1,6 @@
package math package math
func Sum(a, b int) int { func Sum(a, b float64) float64 {
return a + b return a + b
} }