RosettaCodeData/Task/Window-creation/Smalltalk/window-creation-2.st
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07: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