Files
Pyarmor-Static-Unpack-1shot/tests/input/op_precedence.py
2024-02-14 21:36:27 -08:00

9 lines
145 B
Python

def foo(a, b, c):
return c - (a + b)
def bar(a, b, c, d):
return a / ((b ** c) * d)
def baz(a, b, c, d):
return a - ((b ^ c) + d)