PicoTurtle
A small turtle-graphics runtime for Lua, powered by Raylib.
Get started
Write a Lua script in your editor, then run it with
picoturtle.
local picoturtle = require "picoturtle"
local t = picoturtle.new()
for side = 1, 6 do
t:forward(120)
t:right(60)
end
Documentation
Documentation is available as ordinary HTML pages in this repository. No documentation generator is required.
- Getting started
- Lua API reference
- Introduction to turtle graphics
- Sample programs
- 0.3.0 compatibility notes
- Release history
- Third-party notices
The executable provides a short command-line reference:
./build/picoturtle --help