December 2013
Beginner to intermediate
286 pages
5h 46m
English
F# Interactive is a way of executing parts of a program interactively. Doing this enables you as a programmer to explore parts of the code and how it behaves. You will have a more dynamic feel for writing code. It's also more fun. F# Interactive is a REPL for F#. This means, it will read the code, evaluate it, and then print out the result. It will then do this over and over again. It's much like a command line, where the code is executed and the result is displayed to the user.
To execute a code in F# Interactive, have a look at the following steps:
printfn ...
Read now
Unlock full access