Commit dd4d79de authored by Taddeus Kroes's avatar Taddeus Kroes

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

parents
*.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
#!/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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment