# v0.2.0-alpha

## New Features

### Tagged Unions

Hit the button below to read the documentation regarding tagged unions

{% content-ref url="/pages/yxlTr6g6rqXvlS8NZpuR" %}
[Tagged Unions](/docs/advanced-features/tagged-unions.md)
{% endcontent-ref %}

### Pattern Matching

Hit the button below to read the documentation regarding pattern matching

{% content-ref url="/pages/PZk8MEPQ0PpwEBMstcpM" %}
[Pattern Matching](/docs/advanced-features/pattern-matching.md)
{% endcontent-ref %}

## Modifications

### New Syntax

In the previous version of the language, the type would always come before the name. For example:

```fsharp
// Old Syntax - <type> <name>
fun getGreeting(String fullName)
```

in this new version, this aspect been reversed: the type will now always come *after* the name, seperated by a colon:

```fsharp
// New Syntax - <name>: <type>
fun getGreeting(fullName: String)
```

### New Pipe Operator

The pipe operator has been changed from `=>` to `|>`.

## Discord and GitHub

Experince issues, or want to get involved? Please join the Discord server and/or create an issue on the GitHub page. Links can be found [here](/docs/read-before-proceeding.md#useful-links).


---

# 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://gauntletlang.gitbook.io/docs/version-release-notes/v0.2.0-alpha.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.
