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
- Host: GitHub
- URL: https://github.com/refcell/cairo-intro
- Owner: refcell
- Created: 2021-02-12T03:02:02.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-12T03:04:02.000Z (over 5 years ago)
- Last Synced: 2025-01-03T17:36:26.082Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```