diff options
-rw-r--r-- | src/Gtk.dcl | 6 | ||||
-rw-r--r-- | src/Gtk.icl | 6 | ||||
-rw-r--r-- | test/test.icl | 5 |
3 files changed, 13 insertions, 4 deletions
diff --git a/src/Gtk.dcl b/src/Gtk.dcl new file mode 100644 index 0000000..75c7754 --- /dev/null +++ b/src/Gtk.dcl @@ -0,0 +1,6 @@ +definition module Gtk + +import Gtk.Signal +import Gtk.State +import Gtk.Types +import Gtk.Widgets diff --git a/src/Gtk.icl b/src/Gtk.icl new file mode 100644 index 0000000..d0e3c3a --- /dev/null +++ b/src/Gtk.icl @@ -0,0 +1,6 @@ +implementation module Gtk + +import Gtk.Signal +import Gtk.State +import Gtk.Types +import Gtk.Widgets diff --git a/test/test.icl b/test/test.icl index 9d6f7ea..635f8ff 100644 --- a/test/test.icl +++ b/test/test.icl @@ -7,10 +7,7 @@ import Control.Monad import Control.Monad.Identity import Control.Monad.State -import Gtk.Signal -import Gtk.State -import Gtk.Types -import Gtk.Widgets +import Gtk Start w = runGtk app w where |