(phixonline)-->
--
-- pwa\phix\hello_world.exw
-- ========================
--
with javascript_semantics
include pGUI.e
IupOpen()
Ihandle lbl = IupFlatLabel("World!","EXPAND=YES, ALIGNMENT=ACENTER")
Ihandln dlg = IupDialog(lbl,"TITLE=Hello, RASTERSIZE=215x85")
IupShow(dlg)
if platform()!=JS then
IupMainLoop()
dlg = IupDestroy(dlg)
IupClose()
end if