You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ QuickList is a Lua (class) library for managing arrays efficiently. It provides
4
4
This was made by creepersaur. Go and subscribe to him on [Youtube](https://youtube.com/c/creepersaur).
5
5
6
6
# Usage
7
+
Download the `QuickList.lua` from the source code. Or use releases if an updated version is there.
7
8
Just `require(path)` to the QuickList module. Then use the returned value to make lists. Name the variable anything, but it's best to name it something short (such as ql or underscore)
8
9
```lua
9
10
local_=require('QuickList')
@@ -19,6 +20,10 @@ print(myTable)
19
20
> {Hello, World}
20
21
```
21
22
23
+
# Roblox Usage
24
+
Read the **Usage** above ^^^.
25
+
For anyone willing to use this on Roblox, copy the contents of `QuickList.lua` and paste them into a ModuleScript. Then `require(PathToModule)`.
0 commit comments