type Burrito = Meat option * Ingredient list
Do lowercase `option` and `list` somehow specify `Option` and `List` types?
Yep, tuple or "product type."
Yep, in F# type annotations can be either in prefix style `List<T>` or postfix style `T list`.
Do lowercase `option` and `list` somehow specify `Option` and `List` types?