Compare commits

..

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

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))
}