https://github.com/gyorgy0/ruggedturtle
This is the source code for the Rugged-turtle program
https://github.com/gyorgy0/ruggedturtle
eframe egui interpreter rust turtle-graphics
Last synced: 9 months ago
JSON representation
This is the source code for the Rugged-turtle program
- Host: GitHub
- URL: https://github.com/gyorgy0/ruggedturtle
- Owner: Gyorgy0
- Created: 2025-03-05T23:34:34.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-17T18:54:36.000Z (about 1 year ago)
- Last Synced: 2025-06-11T05:42:12.694Z (11 months ago)
- Topics: eframe, egui, interpreter, rust, turtle-graphics
- Language: Rust
- Homepage: https://github.com/Gyorgy0/RuggedTurtle-release
- Size: 508 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rugged turtle
This is my first interpreter written in Rust. The program let's you control a turtle with specific commands. The program primarily is for teaching programming,
by visualizing instruction graphically.
Below you can see some examples that this program can produce, using some simple instructions:
# Graphics
### command: for(i, 0, 200) {pencolor(55+i, 0, 55+i, 255); forward(30+i); right(59)}

### command: for(i, 0, 200) {forward(100); right(59+i); forward(100)}

# Arithmetics
