This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is a part of Julia. License is MIT: https://julialang.org/license | |
# This is a modifed version of julia/examples/ModInts.jl | |
module ModInts | |
export ModInt | |
import Base: +, -, *, /, inv | |
# this has to be subtyped from at least Number to avoid transpose |