Quantcast
Viewing all articles
Browse latest Browse all 51

F# Recipe #2 – The type int is not compatible with type unit

Problem When writing your first F# program , you get the following error “The type int is not compatible with type unit”. You need to fix this. Solution The type unit is F#’s version of void. This indicates that the compiler was expected an return value of int but there is no return value. This can be fixed by adding 0 to the end to return 0 as shown in the screenshot below.  Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 51

Trending Articles