Hello World
The simplest possible Fynerisor app.

Code
require(["v0.4", "@gui"])
let label = widget.NewLabel("Hello World")
window.SetContent(container.NewHBox([label]))Explanation
- Declare version and module requirements with
require() - Create a label widget with text “Hello World”
- Place it in a horizontal box container
- Set it as the window content using
window.SetContent()
Try It
Save this as hello.risor and run:
fynerisor hello.risorOr use watch mode for automatic reloading:
fynerisor --watch hello.risor