Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliapluto/plutoturtles.jl
Learn Julia programming with interactive drawings and color!
https://github.com/juliapluto/plutoturtles.jl
Last synced: about 1 month ago
JSON representation
Learn Julia programming with interactive drawings and color!
- Host: GitHub
- URL: https://github.com/juliapluto/plutoturtles.jl
- Owner: JuliaPluto
- License: unlicense
- Created: 2024-08-06T10:13:18.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T09:51:45.000Z (5 months ago)
- Last Synced: 2024-08-10T12:03:47.609Z (5 months ago)
- Language: Julia
- Homepage: https://featured.plutojl.org/basic/turtles.html
- Size: 44.9 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PlutoTurtles.jl
Learn Julia programming with interactive drawings and color![**Read the (interactive) featured notebook →**](https://featured.plutojl.org/basic/turtles.html)
https://github.com/user-attachments/assets/29953264-f364-4f47-98c6-533ce7218af8
# How to use
Open a Pluto notebook, and write:
```julia
using PlutoTurtles
```Now you can start making turtle drawings! For example, you can make a triangle. Add a cell with this code:
```julia
@steps turtle_drawing() do t
forward!(t, 3)
right!(t, 60)forward!(t, 3)
right!(t, 60)
forward!(t, 3)
right!(t, 60)
end
```To learn more, [**read the (interactive) featured notebook →**](https://featured.plutojl.org/basic/turtles.html)