summaryrefslogtreecommitdiff
path: root/tests/micropython/viper_binop_divmod.py
blob: 822424982a0ae3a9700b0523ab9d4c0f3e095932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# test floor-division and modulo operators

@micropython.viper
def div(x:int, y:int) -> int:
    return x // y

@micropython.viper
def mod(x:int, y:int) -> int:
    return x % y

def dm(x, y):
    print(div(x, y), mod(x, y))

for x in (-6, 6):
    for y in range(-7, 8):
        if y == 0:
            continue
        dm(x, y)