Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Could you explain why you have the read :: read a => String -> a expression? (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:22
A friend who was helping me told me to put that in or read wouldn't work. I was pretty much trying anything at that point and thought it was needed. – Philip Eloy Jul 14 '12 at 14:43
1  
I think the friend meant that you might wrap your use of read with 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 of read i.e. Read a => String -> a and this won't help it figure out what the user's input means. In this case you can also do print (read inputjar ::Int) -- your main error above was using putStrLn, which acts only on strings, rather than print. – applicative Jul 14 '12 at 14:55
@PhilipEloy: Since "Someone answered it on this page" please accept the relevant answer. If someone else asked basically the same question and the answer is in that question please link to it in a comment so we can close this one as a duplicate linking to the other question. – ThiefMaster Jul 15 '12 at 12:06

4 Answers

You say (read inputjar :: Int) in your code, but you're telling us that you want to read a Float. You are not defining read, take that line out. You use putStrLn so that you can print out the float, but putStrLn takes a String, so you need to show the value.

main = do
    putStrLn "Please input a number."
    inputjar <- getLine
    putStrLn $ show (read inputjar :: Float)
share|improve this answer

Well I guess the

read :: read a => String -> a

is there just by mistake?

Anyway, under ghci, :t getStrLn shows:

putStrLn :: String -> IO ()

So putStrLn only accepts String as its first parameter, so if you really want to:

putStrLn( show (read inputjar :: Int))

BTW, read inputjar :: int is correct, only your ouput is wrong.

share|improve this answer
ok, that worked. That's fantastic. Thank you. If I want to use the contents of inputjar for something else (say an actual calculation) what else would I need to do? – Philip Eloy Jul 14 '12 at 14:30
main = do
   putStrLn "Please input a number."
   inputjar <- readLn
   print (inputjar :: Int)

This is in a way nicer since it immediately fixes what we're reading the string as:

main = do
   putStrLn "Please input a number."
   inputjar :: Int  <- readLn
   print inputjar

but it requires {-#LANGUAGE ScopedTypeVariables#-}

share|improve this answer
inputjar <- readLN :: IO Int, no extensions. My preferred method. – Daniel Fischer Jul 14 '12 at 16:35
Same here; I was resisting typing with IO in this context. – applicative Jul 14 '12 at 17:41

putStrLn prints out Strings, not Ints, so there are two solutions:

Use print, which prints anything that implements Show:

main = do
    putStrLn "Please input a number."
    inputjar <- getLine
    let n = read inputjar :: Int
    print n

.. or call putStrLn on the original String that you read in

main = do
    putStrLn "Please input a number."
    inputjar <- getLine
    let n = read inputjar :: Int
    putStrLn inputjar

In the latter example n is never used, but presumably you would write some code after that which would actually use it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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