fork(2) download
  1. class A(object):
  2. def __init__(self):
  3. print("world")
  4.  
  5. class B(A):
  6. def __init__(self):
  7. print("hello")
  8.  
  9. B()
Success #stdin #stdout 0.02s 9172KB
stdin
Standard input is empty
stdout
hello