Skip to content

Instantly share code, notes, and snippets.

@estebanlm
Created February 20, 2023 09:52
Show Gist options
  • Save estebanlm/5a3da635c966c8105724b68889834a5d to your computer and use it in GitHub Desktop.
Save estebanlm/5a3da635c966c8105724b68889834a5d to your computer and use it in GitHub Desktop.
test1
app := SpApplication new.
presenter := SpPresenter newApplication: app.
presenter layout: (SpBoxLayout newTopToBottom).
presenter open.
presenter layout add: (label := presenter newLabel) expand: false.
label label: 'Hello, Cagliari'.
presenter layout add: (button := presenter newButton) expand: false.
button label: 'Click me'.
button action: [ app inform: 'Clicked' ].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment