aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramelia <amelia@[email protected]>2024-02-23 19:51:22 +0000
committeramelia <amelia@[email protected]>2024-02-23 19:51:22 +0000
commit4a18114e58e2c7ef3a9c7785a5b52fecfb1bb132 (patch)
tree68cc787d5e9c68497d39df5ecc03be667165d77a
parent1dd166393d445e0f28bb4e42aa1a11bf0de9dbc9 (diff)
docs readme
-rw-r--r--docs/readme.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/readme.md b/docs/readme.md
new file mode 100644
index 0000000..18deebf
--- /dev/null
+++ b/docs/readme.md
@@ -0,0 +1,24 @@
+# lualib (llib)
+(name subject to change)
+
+with the library in the same directory [(or one of the other valid search locations)](https://www.lua.org/pil/8.1.html)
+
+```lua
+require "llib"
+```
+
+which makes a global llib table
+
+> ### future require versions will eventually return the table
+> ```lua
+> llib = require "llib"
+> ```
+
+the table has many subtables, with related function in them, you can view them like so
+
+```lua
+llib.io.pprint(llib) --pprint is a part of the io module, pprint meaning pretty print
+```
+
+all subtables have a corresponding file in this directory, with info on its functions
+