Advanced Functional Prog.


Introduction

The language considered is Microsoft F# and the most simple program, called "intro.fsx", is given below:

(** Displaying a list **)
printfn "%A" [1;2;3]

The command line to execute the code, requires the dotnet framework, and is:

dotnet fsi intro.fsx

1 - 9