« Fsharp » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 25 : Ligne 25 :
|}
|}


= List and arrays =
= List =
Ordered, immutable, series of elements of the same type.
<kode lang='fs'>
<kode lang='fs'>
let list1 = [1; 2; 3]
let list1 = [1; 2; 3]
Ligne 41 : Ligne 42 :
// concatenate operator
// concatenate operator
list1 @ [4; 5]  // create a new list [1; 2; 3; 4; 5]
list1 @ [4; 5]  // create a new list [1; 2; 3; 4; 5]
</kode>


// arrays
= Array =
Fixed-sized, zero-based, mutable collectionof consecutive elements of the same type.
<kode lang='fs'>
let myArray = [|1; 2; 3|]
let myArray = [|1; 2; 3|]



Version du 24 septembre 2022 à 12:40

Command line

Ps.svg
dotnet fsi  # start F# Interactive
dotnet fsi script.fsx  # run script.fsx

dotnet new console -o fsharp1 -lang f#

printf

Fs.svg
let s = "value"
printfn "text %A text" s
Format Type
%A any
%s string
%i integer
%b boolean

List

Ordered, immutable, series of elements of the same type.

Fs.svg
let list1 = [1; 2; 3]

let list2 = [1..5]      // [1; 2; 3; 4; 5]
let list3 = [0..2..10]  // [0; 2; 4; 6; 8; 10]

// elements in lists are not mutable

// cons operator
0 :: list1  // create a new list with 0 at the head [0; 1; 2; 3]
// extract head and tail
let head :: tail = list1  // head: 1, tail: [2; 3]

// concatenate operator
list1 @ [4; 5]  // create a new list [1; 2; 3; 4; 5]

Array

Fixed-sized, zero-based, mutable collectionof consecutive elements of the same type.

Fs.svg
let myArray = [|1; 2; 3|]

// elements in arrays are mutable
myArray[1] <- 4  // [|1; 4; 3|]

Function

Fs.svg
let add x y = x + y
let result = add 1 2  // 3

Console input

Fs.svg
printf "Enter a value: "
let input = Console.ReadLine()
printfn "Entered value: %s" input
.vscode/launch.json
{
    "configurations": [
        {
            "console": "integratedTerminal" // // switch from internalConsole to integratedTerminal to allow console input in VS code
        }
    ]
}

Dev env

  • VScode
    • Ionide for F# extension → intellisense
    • fantomas-fmt → format F#

Create launch and tasks

  1. Disable the Ionide for F# extension
  2. Run → Run Without Debugging
  3. Select environment: .NET 5+ and .NET Core (this create the launch.json file)
  4. Open launch.json → Add Configuration → .NET: Launch .NET Core Console App
  5. Fill target-framework = net6.0 and project-name = myproject
  6. Run → Run Without Debugging
  7. Configure Task → Create tasks.json file from template → Select a Task Template: .NET Core