Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/itzkiwisky/linx
- Owner: itzKiwiSky
- Created: 2023-06-29T19:26:12.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-06-30T00:52:16.000Z (over 1 year ago)
- Last Synced: 2024-11-08T18:12:44.419Z (2 months ago)
- Topics: library, love2d, lua, programming-language
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```