> For the complete documentation index, see [llms.txt](https://jmkoni.gitbook.io/rust/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jmkoni.gitbook.io/rust/getting-started-with-rust.md).

# 1. Getting Started With Rust

## The Lazy Way -- Let's Use Repl.It!

Go to [repl.it](https://repl.it/languages) and choose Rust. That's it!

## Installing Rust

If you are on Linux or Mac, run:

```
$ curl https://sh.rustup.rs -sSf | sh
```

And add the folling to either your `.zshrc` or `.bash_profile file`:

```
$ export PATH="$HOME/.cargo/bin:$PATH"
```
