simple-python-pyinstaller-app/sources/calc.py
Giles Gaskell 451a3785a2 Add Python source files
* And update .gitignore
2017-11-28 17:30:45 +11:00

5 lines
68 B
Python

'''
A simple addition function.
'''
def add(a, b):
return a + b