Alex F
Alex F

Reputation: 43321

Block is unfinished

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.

Upvotes: 14

Views: 6453

Answers (1)

Jimmy
Jimmy

Reputation: 6171

In F#, a function has to bind a name to a value.

The printfn statement has a return value, and this is ultimately what gets bound to test.

Without the printfn statement you only have a statement binding the value 1 to x. 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 ()

Upvotes: 16

Related Questions