Difference between revisions of "Fsharp"

From NixOS Wiki
Jump to: navigation, search
(Add warning about the new wiki)
m (rollback unauthorized mass edits)
Tag: Rollback
 
Line 1: Line 1:
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Fsharp.}}
 
 
 
= Usage =
 
= Usage =
 
F# is packaged in the <code>dotnet-sdk</code> family of packages (<code>dotnet-sdk_3</code>, <code>dotnet-sdk_5</code>, and <code>dotnet-sdk_7</code> as of Dec 20, 2022).
 
F# is packaged in the <code>dotnet-sdk</code> family of packages (<code>dotnet-sdk_3</code>, <code>dotnet-sdk_5</code>, and <code>dotnet-sdk_7</code> as of Dec 20, 2022).

Latest revision as of 11:03, 6 April 2024

Usage

F# is packaged in the dotnet-sdk family of packages (dotnet-sdk_3, dotnet-sdk_5, and dotnet-sdk_7 as of Dec 20, 2022).

You can pop into a REPL:

$ nix-shell -p dotnet-sdk
warning: unknown setting 'experimental-features'

[nix-shell:~]$ dotnet fsi

Microsoft (R) F# Interactive version 12.0.5.0 for F# 6.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

For help type #help;;

> printfn "Hello world from F#!";;
Hello world from F#!
val it : unit = ()

To create a project use

dotnet new console --language F#
dotnet run

like so!

See also