Created
February 20, 2023 09:52
-
-
Save estebanlm/5a3da635c966c8105724b68889834a5d to your computer and use it in GitHub Desktop.
test1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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