Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/itzkiwisky/linx

Drawing programming language for love2D
https://github.com/itzkiwisky/linx

library love2d lua programming-language

Last synced: 15 days ago
JSON representation

Drawing programming language for love2D

Awesome Lists containing this project

README

        

# Linx

Linx is a simple programming language that allow you create drawings on a canvas.
The language is pretty minimal, without flow controls or statements, the only thing you can use is variables.

You can declare a variable using the `defvar` command

Usage : `defvar ...`

```linx
;; this program defines a var and set the foreground color to the values of the var
defvar color testColor 255 255 255 255
setfg $testColor
```