Refactoring (MAY BE BUGGY)

This commit is contained in:
2025-10-13 09:16:28 +11:00
parent 81d6e21a00
commit fa5d805eef
20 changed files with 2953 additions and 2929 deletions

View File

@@ -20,19 +20,19 @@ stdlnout $testVar
# Lists
setlist *testList "Item 1" "Another Item" "Item the Third"
getlistat *testList 2 &tmp
setlist &testList "Item 1" "Another Item" "Item the Third"
getlistat &testList 2 &tmp
stdlnout $tmp
setlistat *testList 1 "I changed this item"
getlistat *testList 1 &tmp
setlistat &testList 1 "I changed this item"
getlistat &testList 1 &tmp
stdlnout $tmp
listappend *testList "I appended this item"
getlistat *testList 3 &tmp
listappend &testList "I appended this item"
getlistat &testList 3 &tmp
stdlnout $tmp
getlistsize *testList &tmp
getlistsize &testList &tmp
stdlnout $tmp
# String Operations