Added an example of importing a user created file

This commit is contained in:
2019-01-06 11:28:25 -05:00
parent 630bf0719d
commit d9413e7c1b
2 changed files with 18 additions and 0 deletions

7
testImport.py Normal file
View File

@@ -0,0 +1,7 @@
#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