Files
lenz-web/helpers/functions/math.go
2025-06-03 11:20:46 +02:00

6 lines
62 B
Go

package functions
func Minus(a, b int) int {
return a - b
}