Google News
logo
F# - Interview Questions
What are the available data types in F#?
F# provides a rich set of data types. It helps to deal with any data whether it is scientific data, data of business analysis, etc. You can see the table of data types here.
 
Data Types in F#

Types Data Types
Primitive data types char, byte, bool, int, float
Derived data types class, array, list, records, sequence
Enumeration enum
Unit type It is used if other data types are not specified.
Advertisement