chore: formatting

This commit is contained in:
2026-05-03 15:04:19 +02:00
committed by Mikkel Elvers
parent f389849947
commit 74a0c78820

View File

@@ -63,13 +63,13 @@ func GetRenderer() *Renderer {
"sub": func(a, b int) int {
return a - b
},
"mul": func(a, b float64) float64 {
"mul": func(a, b float64) float64 {
return a * b
},
"imul": func(a, b int) int {
return a * b
},
"div": func(a, b float64) float64 {
"div": func(a, b float64) float64 {
if b == 0 {
return 0
}