diff options
| author | ame <[email protected]> | 2025-06-12 02:08:47 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2025-06-12 02:08:47 -0500 |
| commit | ec91aab02442dbbf577fa8d8e68c79a09b55f3f9 (patch) | |
| tree | e201087adabba53febc0df9a34db4577755f5961 /tests | |
| parent | c3efe329c55727ca68c4975dccc774b279479fc3 (diff) | |
rename 'array' lib and small additions
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/table.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/table.lua b/tests/table.lua new file mode 100644 index 0000000..c63bfdf --- /dev/null +++ b/tests/table.lua @@ -0,0 +1,4 @@ +local llby = require"lullaby" +llby.io.pprint(llby.table.split("/hello/world//test///", "/", false)) -- {"hello", "world", "", "test", "", "", ""} + +llby.io.pprint(llby.table.split("/hi/uwu/meow", "/", false)) |
