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

9 lines
176 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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