# Introduction

**Frost** is a modern systems programming language that combines the speed of C with modern language features. It offers static typing and compiles to [LLVM IR](https://llvm.org/docs/LangRef.html), delivering high performance while remaining accessible and easy to learn. Whether you're building system tools or performance-critical applications, Frost provides the low-level control you need with the convenience of contemporary programming practices.

## Features

* **Static Typing**: Frost is `statically` typed, catching errors at compile time rather than runtime.
* **Modern Syntax**: Frost's syntax is clean and expressive, making it easy to read and write.
* **LLVM Backend**: Frost compiles to `LLVM` IR, providing high performance and compatibility with a wide range of platforms and toolchains.
* **QOL Features**: Frost includes modern conveniences like `defer` for resource management and interoperability with anything that speaks `C`.

## Example

```frost
import "https://frost-lang.deno.dev/std/io.ff"

main: never -> int = {
    printf("Hello, world!\n")

    0
}
```


---

# 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://frost-lang.gitbook.io/frost/readme.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.
