flowy/custops.py
2010-11-05 18:57:01 +01:00

5 lines
No EOL
94 B
Python

def minus(*args):
res = args[0]
for arg in args[1:]:
res -= arg
return res