# 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="https://1530083554-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FFC1DMiUuayu0DbwfgkH0%2Fuploads%2FYUjzZOMKB2l2uu7SROM5%2Fgblend.png?alt=media&#x26;token=e74b6b2e-e813-4e7e-a85d-80a162322b32" 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="developer-quickstart-guides/solidity-developer-guide">solidity-developer-guide</a></td></tr><tr><td></td><td><strong>❐ Rust Smart Contract</strong></td><td></td><td><a href="developer-quickstart-guides/rust-developer-guide">rust-developer-guide</a></td></tr><tr><td></td><td><strong>❐ Vyper Smart Contract</strong></td><td></td><td><a href="developer-quickstart-guides/vyper-developer-guide">vyper-developer-guide</a></td></tr></tbody></table>


---

# 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://docs.fluentlabs.xyz/learn/developer-guides/developer-quickstart-guides.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.
