fork(1) download
  1. class A(object):
  2. def printme(self):
  3. print "A"
  4.  
  5. self.printme()
  6.  
  7.  
  8.  
  9. a = A()
  10. #a.printme()
  11.  
  12.  
Success #stdin #stdout 0.01s 6352KB
stdin
Standard input is empty
stdout
Standard output is empty