mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
8 lines
145 B
Python
8 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)
|