Advertisement
Guest User

Untitled

a guest
Feb 10th, 2017
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. # helloWorld.py
  2. from kivy.app import App
  3. from kivy.uix.button import Button
  4.  
  5. class TestApp(App):
  6.     def build(self):
  7.         return Button(text='Hello World')
  8.  
  9. TestApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement