Add: test module for python

This commit is contained in:
2019-04-29 11:26:24 +09:00
parent 046a481400
commit 361c26e9a0
2 changed files with 7 additions and 0 deletions
@@ -0,0 +1,3 @@
class TestModule:
def print(self):
print('test module')
+4
View File
@@ -0,0 +1,4 @@
from lib.test_module import TestModule
tm = TestModule()
tm.print()