RosettaCodeData/Task/Window-creation/Smalltalk/window-creation-2.st
2023-07-01 13:44:08 -04:00

4 lines
102 B
Smalltalk

|top|
top := TopView new.
top add: (Label label: 'Hello World') in:(0.0@0.0 corner:1.0@1.0).
top open