fork download
  1. class Car:
  2. def beep():
  3. print('Beep')
  4.  
  5. car = Car()
  6. Car.beep()
  7.  
  8. #https://pt.stackoverflow.com/q/482008/101
Success #stdin #stdout 0.02s 9196KB
stdin
Standard input is empty
stdout
Beep