I'm trying to learn IronPython. I created an extremely simple class like this one:
class Test:
def testMethod(self):
print "test"
Next I'm trying to use it in IronPython Console:
>>> import Test
>>> t = Test()
After the second line I get following error:
TypeError: Scope is not callable
What I'm doing wrong?