gmath/math_test.go
2024-01-12 18:19:35 +01:00

11 lines
110 B
Go

package gmath
import (
"fmt"
"testing"
)
func TestMod(t *testing.T) {
fmt.Println(ModPositive(-1, 10))
}