March 2018
Beginner to intermediate
458 pages
10h 34m
English
F# supports many data types, for example:
In an F# function, we can pass one tuple instead of multiple parameters of different types. Declaration of a tuple is very simple and we can assign values of a tuple to different variables, for example:
let tuple1 = 1,2,3// assigning values to variables , v1=1, v2= 2, v3=3let v1,v2,v3 = tuple1// if we want to assign only two values out of three, use “_” to skip the value. ...
Read now
Unlock full access