I'm writing a program which needs a UI. The program is in haskell. For the UI, I think of using ncurses library. Should I use hscurses library for haskell and write the UI in haskell or should I use ncurses library and write the UI in C and call haskell fuctions from C?
Which is the most preferred way?
Thanks.

link|improve this question

77% accept rate
3  
You'll probably have an easier time doing it in Haskell, although I haven't used hsncurses myself. Going to a lower level language to implement GUI functionality seems a bit backwards. – valderman Aug 3 '11 at 9:35
feedback

1 Answer

up vote 7 down vote accepted

I don't see any advantages in writing the UI in C and call functions from C.

You can choose how you are going to do the UI from several libraries available on Hackage :

I don't know which is better, there's a small description but not enough. Nanocurses seems more portable but with less features.

link|improve this answer
1  
Note that hscurses is pure binding. Its pretty ugly in that everything uses CString and stuff. I don't recommend it. – alternative Aug 3 '11 at 11:55
Among those libraries, hscurses seems to be complete mapping of ncurses. Yes, its pure binding, but it has all things that ncurses offer. Thanks to all for the answers and clarification. – kadaj Aug 3 '11 at 14:27
feedback

Your Answer

 
or
required, but never shown

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