fork download
  1. class Foo:
  2. def __init__(self):
  3. print("Tworze nowe Foo")
  4.  
  5.  
  6. f = Foo()
  7. Foo()
  8.  
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
Tworze nowe Foo
Tworze nowe Foo