Create a new project
dotnet new -l f#
Restore any packages listed in project.json
dotnet restore
A project.lock.json file should be written out.
Execute the program
dotnet run
The above will compile the code if required.
The output of the default project created by dotnet new -l f#
contains the following:
Hello World!
[||]