globalforest/main.py

13 lines
202 B
Python
Raw Normal View History

2020-09-20 10:51:02 -04:00
from kivy.app import App
from kivy.uix.label import Label
class GlobalForest(App):
def build(self):
return Label(text='Hello world')
if __name__ == '__main__':
GlobalForest().run()