An open API service indexing awesome lists of open source software.

https://github.com/refcell/cairo-intro

Introductory walkthrough of Cairo Language
https://github.com/refcell/cairo-intro

Last synced: 4 months ago
JSON representation

Introductory walkthrough of Cairo Language

Awesome Lists containing this project

README

          

### Cairo Intro Repo

A basic walkthrough of [Cair Docs](https://www.cairo-lang.org/docs)

#### Compilation & Execution

Compiling basic `main.cairo` file:

```
cairo-compile main.cairo --output main_compiled.json
```

Execution:

```
cairo-run --program=main_compiled.json --print_output --print_info --relocate_prints
```