Ok, gelatyx just really doesn't like this being lua formatted, back to txt

This commit is contained in:
Mike Hillyer
2023-03-11 08:39:43 -05:00
parent e827b184ad
commit b25b8541a3
+7 -7
View File
@@ -34,13 +34,13 @@ myvar = 32 -- this is a GLOBAL variable
Lua supports the following relational operators:
```lua
== equality
~= inequality
< less than
> greater than
<= less or equal
>= greater or equal
```txt
**==** equality
**~=** inequality
**<** less than
**>** greater than
**<=** less or equal
**>=** greater or equal
```
You can concat strings with two dots surrounded by spaces.