R0bl0x10501050 / CSS-Interpreter-In-RLua

This won't run correctly in Repl as it's written is a dialect of Lua called Roblox Lua (Rlua).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intro

Hey Developers!

This is a little interpreter I wrote in Lua for CSS to help further simplify the process of styling GUIs with code. For those of you with prior coding experience in the web, you must know of the styling language CSS.

Examples of CSS:

body {
  background-color: #000000;
  color: #ffffff;
}

I made my CSS Interpreter to model exactly after the actual one.

My CSS:

body {
  background-color: #000000;
  color: #ffffff;
}

It's the same!


Update Log:

12/26/2020 - Created project

About

This won't run correctly in Repl as it's written is a dialect of Lua called Roblox Lua (Rlua).


Languages

Language:Lua 100.0%