globalforest/main.py
2020-09-20 17:51:02 +03:00

13 lines
202 B
Python

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()