gmath/math_test.go

11 lines
110 B
Go
Raw Normal View History

2024-01-12 18:19:35 +01:00
package gmath
import (
"fmt"
"testing"
)
func TestMod(t *testing.T) {
fmt.Println(ModPositive(-1, 10))
}