You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/ocaml-lablgtk2-test.ml

15 lines
295 B

(*
This file is part of MXE. See LICENSE.md for licensing information.
*)
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 ()