# Pastebin yIqhNTTE use Selkie::UI; App { my $count := new-state 0; VBox { Text { "count: $count" } Button :label("Click me"), :on-press{ $count++ } } }