RosettaCodeData/Task/Hello-world-Graphical/Lua/hello-world-graphical.lua
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
176 B
Lua

require "iuplua"
dlg = iup.dialog{iup.label{title="Goodbye, World!"}; title="test"}
dlg:show()
if (not iup.MainLoopLevel or iup.MainLoopLevel()==0) then
iup.MainLoop()
end