RosettaCodeData/Task/Hello-world-Graphical/Lua/hello-world-graphical-1.lua

9 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