blender/intern/python/testmodule/test.py
2002-10-12 11:37:38 +00:00

17 lines
214 B
Python
Executable File

#! /usr/bin/env python
# CVS
# $Author$
# $Date$
# $RCSfile$
# $Revision$
import testmodule
tc = testmodule.TestClass()
print tc.memberVariable
tc.memberVariable = 1
print tc.memberVariable
tc.memberFunction()