I am trying to make a program that takes a Float number inputted by the user via keyboard and does stuff with it.
However every time I try to parse the inputted String into a Float I keep getting errors. Every single method I've tried has failed to allow me to take user inputted data and turn it into a Float, which is what I need.
My practice program (not the actual problem I'm trying to solve) is:
main = do
putStrLn "Please input a number."
inputjar <- getLine
read :: read a => String -> a
putStrLn( read inputjar :: Int)
Please and thank you for help.
~ a haskell newbie who is losing his mind.
EDIT:
A further question:
How do I take the inputted string and turn it into something I can use in a calculation?
IE how do I take the inputted string so I can do something like: (var + var)/2
EDIT 2: NEVERMIND! Someone else answered it on this page. :) thank you.
read :: read a => String -> aexpression? (This is a serious question: explaining your own code in detail is a really good way of understanding and debugging.) – dbaupp Jul 14 '12 at 6:22readwith a specialization of its signature, e.g.print ((read :: String -> Int) inputjar)(We use print here because it is the number, not a string that we are working with.) The compiler already knows the most general type ofreadi.e.Read a => String -> aand this won't help it figure out what the user's input means. In this case you can also doprint (read inputjar ::Int)-- your main error above was usingputStrLn, which acts only on strings, rather than print. – applicative Jul 14 '12 at 14:55