vote up 5 vote down star

This is a simple question, but I'm having trouble tracking down an answer since F# is so new. I just wanted to pause in an F# console application, so I wrote:

Console.ReadKey()

But this gives the warning: This expression should have type 'unit', but has type 'ConsoleKeyInfo'. Any help would be greatly appreciated.

Thanks, - Lee

flag

You'll get pretty much the same warning in OCaml, BTW. You can disable it in F# with the --no-warn flag (though I'm not sure what the code number for that particular warning is). – Chris Conway Dec 2 '08 at 23:06

1 Answer

vote up 12 vote down check

Solution:

Console.ReadKey() |> ignore

Explanation: Console.ReadKey() returns an object of type 'ConsoleKeyInfo' but you're using it as a statement without assigning the return value to anything. So F# warns you that you're ignoring a value. ignore takes any type and returns nothing. It could be defined like this:

let ignore _ = ()
link|flag

Your Answer

Get an OpenID
or

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