Skip to content
Snippets Groups Projects
Commit dd4d79de authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Added README, ignore file and Hello World program that uses the KiVy library.

parents
No related branches found
No related tags found
No related merge requests found
*.pyc
*.swp
*~
Use main.bat to run on a Windows machine, run main.py on a Linux machine.
\ No newline at end of file
C:\Kivy-1.1.1\kivy.bat main.py
\ No newline at end of file
main.py 0 → 100644
#!/usr/bin/env python
import kivy
kivy.require('1.0.6') # replace with your current kivy version !
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
return Button(text='Hello World')
if __name__ in ('__android__', '__main__'):
MyApp().run()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment