RosettaCodeData/Task/Window-creation/Smalltalk/window-creation-2.st

5 lines
102 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
|top|
top := TopView new.
top add: (Label label: 'Hello World') in:(0.0@0.0 corner:1.0@1.0).
top open