An open API service indexing awesome lists of open source software.

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.

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.

![Two Triangles Screenshot](love-turtle/docs/screens/2-triangles--Screenshot_20250915_193154.png)