lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 10/02/2011, at 9:02 AM, Steve Litt wrote:

> Hi all,
> 
> I may (or may not) have installed IUP on my computer. Could someone point me 
> to the simplest possible IUP app?

The dialog example is pretty short:

require("iuplua")

vbox = iup.vbox { iup.label {title="Label"}, iup.button { title="Test" } }
dlg = iup.dialog{vbox; title="Dialog"}
dlg:show()

iup.MainLoop()