RosettaCodeData/Task/Hello-world-Graphical/BaCon/hello-world-graphical.bacon

12 lines
196 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
REM GUI greeting
INCLUDE "hug.bac"
mainwindow = WINDOW("BaCon greeting", 225, 40)
greeting = ENTRY("Goodbye, World!", 115, 30)
ATTACH(mainwindow, greeting, 5, 5)
REM gtk event loop...
DISPLAY