init commit

This commit is contained in:
2025-07-14 15:06:53 -04:00
commit 932b0768b2
4 changed files with 122 additions and 0 deletions

11
tests/start.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
touch results.txt
test () {
echo "-- [Test: $1] --" > results.txt
luau $2 >> results.txt
echo "-- [Test: $1] --" >> results.txt
}
test "map_filter" "./luau/map_filter.luau"