Guest User

Untitled

a guest
Jun 8th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. namespace gtktest
  2. module Main =
  3.  
  4. open System
  5. open Gtk
  6.  
  7. [<EntryPoint>]
  8. let Main(args) =
  9. Application.Init()
  10. let win = new MainWindow.MyWindow()
  11. win.Show()
  12. Application.Run()
  13. 0
Advertisement
Add Comment
Please, Sign In to add comment