# 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>
