added eugtk examples

This commit is contained in:
2016-11-25 00:33:18 -07:00
parent 87a821e3da
commit c0b98b619e
877 changed files with 96872 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace a
include GtkEngine.e
export constant color = "red"
constant win = create(GtkWindow,{ -- this window is NOT exported
{"name","a:window"}, -- note that this name must include the namespace!
{"move",200,300},
{"title","Window A"}})
show_all(win)
export function clear()
set(win,"background",#dddddd)
return 1
end function