mirror of
https://bitbucket.org/Mattrixwv/pytutorial.git
synced 2025-12-06 10:13:58 -05:00
8 lines
198 B
Python
8 lines
198 B
Python
#This is a file with a few functions in it and is used as a test for the fileAdd.py file
|
|
|
|
def testFunction():
|
|
return "This is the test function"
|
|
|
|
def testFunction2(num1, num2):
|
|
return num1 + num2
|