# Understanding F# types: Introduction

*NOTE: Before reading this series, I suggest that you read the* [*"thinking functionally"*](/fsharpforfunandprofit/thinking-functionally/thinking-functionally.md) *and* [*"expressions and syntax"*](/fsharpforfunandprofit/understanding-f/expressions-and-syntax.md) *series as a prerequisite.*

F# is not just about functions; the powerful type system is another key ingredient. And just as with functions, understanding the type system is critical to being fluent and comfortable in the language.

Now, so far we have seen some basic types that can be used as input and output to functions:

* Primitive types such as `int`, `float`, `string`, and `bool`
* Simple function types such as `int->int`
* The `unit` type
* Generic types.

None of these types should be unfamiliar. Analogues of these are available in C# and other imperative languages.

But in this series we are going to introduce some new kinds of types that are very common in functional languages but uncommon in imperative languages.

The extended types we will look at in this series are:

* Tuples
* Records
* Unions
* The Option type
* Enum types

For all these types, we will discuss both the abstract principles and the details of how to use them in practice.

Lists and other recursive data types are also very important types, but there is so much to say about them that they will need their own series!


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://swlaschin.gitbook.io/fsharpforfunandprofit/understanding-f/understanding-fsharp-types/types-intro.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
