Lucas Noal Pötter
Lucas Noal Pötter
# Warn *So far, these are the reservations I have to make, but as the code is observed, I will try to edit this message with new information. This is...
Does this mean that you intend to deflate the Client structure by moving some methods and functions?
Regarding the imposition of "use strict", perhaps this is [useful](https://gist.github.com/david-mark/7a06527c5e9da908ae50a73b60ddb57f).
In Windows, there is a command called `wmic os` which returns relevant information about the user's operating system. As required, I have listed here some information that can be used...
Done [426f37a](https://github.com/gamelly/gly-engine/commit/426f37a7218f3e9152fddd912a71eae777da473f). I forgot to mention the issue in the commit.
```lua -- converts text into a slug (lowercase, hyphens, no special characters) local function slug(text) if not text then return nil end local s = tostring(text):lower() s = s:gsub("%s+", "-")...