Appearance
This example shows how to create the simplest possible Hello, World! app. The app consists of a single Page the user can't leave, so not such a fun app ^^'
Page
class MyApp extends App{ createStartPage(){ return new StartPage() } }
class StartPage extends Page{ createGui(){ return Text(`Hello, World!`) } }