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

9 lines
176 B
Lua
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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