vote up 2 vote down star
1

I started learning Standard ML recently out of curiosity. So what I know is that is has an efficient compiler (MLton) which allows us to freely use abstractions without worrying about performance.

It would be perfect if I could do some GUI programming with Standard ML, too. Is there anything like Gtk, Qt, or WxWidgets binding for Standard ML?

Thank you very much.

flag

40% accept rate
1  
You'd have better luck with OCaml, which is a more widely used ML variant (outside of academia). If you're willing to make a larger leap away from SML, Haskell has excellent GUI toolkits too. – ephemient Oct 23 at 21:05
Oh thanks. I already learned Haskell, though not much with the GUI stuff. I was curious about SML just in case I needed performance that could compare with C, lol. – Phuc Nguyen Oct 29 at 0:09

1 Answer

vote up 3 vote down

Here's a paper describing the mGTK project, which is a Standard ML binding to GTK. There are also a couple of interfaces to OpenGL, although this is more 2 and 3D graphics-oriented rather than specifically a GUI toolkit. eXene is a toolkit for X Windows. sml_tk is an interface to Tk.

link|flag
Thanks. I also did some googling and found the mGTK and SML-Gtk projects, but it looked like they haven't been updated for a long time :( – Phuc Nguyen Oct 11 at 8:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.