fork(1) download
  1. class Se:
  2. i = 1
  3. def Print(self):
  4. print(self.i)
  5.  
  6. se = Se()
  7. se.Print()
  8.  
Success #stdin #stdout 0.03s 27720KB
stdin
Standard input is empty
stdout
1