Go to the documentation of this file.
   10 a= test05.AClass(2,3.)
 
   14 print "func2(10)=", test05.func2(10)
 
   15 print "func2(10,100)=", test05.func2(10, 100)
 
   18 print "func3(1)=", test05.func3(1)
 
   19 print "func3(1.)=", test05.func3(1.)
 
   22 print "AMethod()=", a.AMethod()
 
   23 print "AMethod(1)=", a.AMethod(1)
 
   24 print "AMethod(1,2.)=", a.AMethod(1,2.)
 
   27 print "BMethod()=", a.BMethod()
 
   28 print "BMethod(1.)=", a.BMethod(1.)
 
   31 print "CMethod(1)=", a.CMethod(1)
 
   32 print "CMethod(1,10.)=", a.CMethod(1,10.)
 
   33 print "CMethod(1,10.,100.)=", a.CMethod(1,10.,100.)
 
   36 print "*** ERRORS!! ***"