implement integer division tests

This commit is contained in:
2020-03-05 17:21:08 +01:00
parent a8b093a005
commit 333475f27b
3 changed files with 18 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ function mul(x: int, y: int): int {
return (x * y);
}
function div(x: int, y: int): int {
return (x / y);
}
function modulo(x: int, y: int): int {
return (x % y);
}