This code fragment is compiled:
let test =
let x = 1
printfn "%A" x
If the last line is removed, there is the following compilation error:
error FS0588: Block following this 'let' is unfinished. Expect an expression.
What does this message mean? In C#/C++ I would expect the “Unused variable” warning in such situation, but F# gives something different.
In F#, a function has to bind a name to a value.
The
printfnstatement has a return value, and this is ultimately what gets bound totest.Without the
printfnstatement you only have a statement binding the value 1 tox. The compiler will be expecting something to bound to test. Because the test function stops at this point, this is why you are seeing the compiler errror.If you want your function just to do stuff (possibly with side effects), you should end your function with
()