4 lines
101 B
Nix
4 lines
101 B
Nix
{
|
|
toIntBase10 = str: builtins.fromJSON "${str}";
|
|
mod = a: b: a - b * (builtins.floor (a / b));
|
|
}
|