https://github.com/arkenidar/flowgorithm-related
Flowgorithm is a free beginner's programming language that is based on graphical flowcharts.
https://github.com/arkenidar/flowgorithm-related
algorithm flow logo lua
Last synced: about 11 hours ago
JSON representation
Flowgorithm is a free beginner's programming language that is based on graphical flowcharts.
- Host: GitHub
- URL: https://github.com/arkenidar/flowgorithm-related
- Owner: arkenidar
- Created: 2024-03-21T14:02:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-16T16:31:39.000Z (10 months ago)
- Last Synced: 2025-10-19T17:35:35.849Z (9 months ago)
- Topics: algorithm, flow, logo, lua
- Language: Lua
- Homepage: https://arkenidar.github.io/flowgorithm-related/flowgorithm-for-logo.html
- Size: 929 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flowgorithm Related
## Screenshots ( for Love2D-based Turtle Graphics )
### Example : Two Triangles basic example
```lua
-- love-turtle/demo0.lua
local function triangle(side, angle)
move(side)
turn(angle)
move(side)
turn(angle)
move(side)
turn(angle)
end
triangle(100, 120)
triangle(100, -120)
```
Draw two triangles, one clockwise and one counter-clockwise.
