fork download
  1. from kivy.app import App
  2. from kivy.uix.button import Button
  3.  
  4. class TestApp(App):
  5. def build(self):
  6. return Button(text='Hello World')
  7.  
  8. TestApp().run()
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty