11 lines
190 B
Bash
Executable File
11 lines
190 B
Bash
Executable File
#!/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" |