> For the complete documentation index, see [llms.txt](https://docs.fluentlabs.xyz/learn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fluentlabs.xyz/learn/developer-guides/developer-quickstart-guides.md).

# Developer Quickstart Guides

Fluent allows developers to write smart contracts in Rust, Solidity, or Vyper. Each language has its unique advantages and syntax, enabling developers to choose the best fit for their projects.&#x20;

This guide will walk you through creating a `HelloWorld` contract in each of these three languages and deploying it to Fluent.

## Get Started

To simplify the setup process, your project can be bootstrapped using Fluent’s scaffold CLI tool. This tool automates the creation of the project structure and necessary directories for smart contract development.

### Install Fluent scaffold CLI tool

To install the Fluent scaffold CLI tool, simply run the following command in your terminal:

```bash
cargo install gblend
```

To create a project, run the following in your terminal:

```bash
gblend init
```

This will prompt you to choose from the available setup options:

* Solidity Smart Contract
* Vyper Smart Contract
* Rust Smart Contract

<figure><img src="/files/A5mgdei6RVsn9qFIS0Zb" alt=""><figcaption><p>Fluent’s scaffold CLI tool</p></figcaption></figure>

Select the option that aligns with your preferred programming language for smart contract development, and the CLI tool will set up the project structure accordingly.

## Choose your path: Solidity, Rust or Vyper

<table data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td></td><td><strong>❐ Solidity Smart Contract</strong></td><td></td><td><a href="/pages/vM1knXu4PPb7xJjQxypV">/pages/vM1knXu4PPb7xJjQxypV</a></td></tr><tr><td></td><td><strong>❐ Rust Smart Contract</strong></td><td></td><td><a href="/pages/GOctDAVpYFQU73BaZodD">/pages/GOctDAVpYFQU73BaZodD</a></td></tr><tr><td></td><td><strong>❐ Vyper Smart Contract</strong></td><td></td><td><a href="/pages/wFMW3bJoU72Y3DXvOKSN">/pages/wFMW3bJoU72Y3DXvOKSN</a></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.fluentlabs.xyz/learn/developer-guides/developer-quickstart-guides.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
