All Projects → JustinGrote → FSharp

JustinGrote / FSharp

Licence: MIT license
No description, website, or topics provided.

Programming Languages

powershell
5483 projects
F#
602 projects

FSharp Social Preview

This is a PowerShell module to enable use of the F# language in PowerShell. It is currently only supported with Powershell 7.2+ at the moment.

Quickstart

Install-Module FSharp
Add-FSharpType -TypeDefinition @'
namespace Test
type Car = {
  model: string
  name: string
  speed: int
}
'@
[Test.Car]::new('Mazda','Miata',65)
model name  speed
----- ----  -----
Mazda Miata    65
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].