I had to write 3 functions: one to convert Fahrenheit to Celsius, one to convert Celsius to Kelvin and a third that converts Fahrenheit to Kelvin using the two first functions.
I've never played with Haskell before so this took me a relatively long amount of time, although now I see that it is pretty simple.
Anyway, I am required to create interactive Haskell programs for the first two functions and use them to compose and executable with pipes in order to get an equivalent to the third function. I have been reading on pipes and it seems simple enough. My main problem seems to be making the functions interactive.
Any help, tips and resources is greatly appreciated!