Compare commits

..

No commits in common. "main" and "v0.0.6" have entirely different histories.
main ... v0.0.6

2 changed files with 11 additions and 1 deletions

2
go.mod
View File

@ -1,3 +1,3 @@
module git.tordarus.net/tordarus/gmath
module git.milar.in/milarin/gmath
go 1.19

10
math_test.go Normal file
View File

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