mxe/src/ocaml-lablgtk2-test.ml

16 lines
293 B
OCaml
Raw Normal View History

(*
This file is part of MXE.
See index.html for further information.
*)
2012-10-04 13:40:46 +01:00
open GlGtk
let destroy () = GMain.Main.quit ()
let _ =
let _ = GtkMain.Main.init () in
let window = GWindow.window () in
let _ = window#connect#destroy ~callback:destroy in
window#show ();
GMain.Main.main ()