[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Simplest possible IUP app?
- From: Geoff Leyland <geoff_leyland@...>
- Date: Thu, 10 Feb 2011 09:06:31 +1300
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()