blob: 9c3afd83b01c5aeace0a4d489e157d4e06653b72 [file] [log] [blame]
# th test.lua > lua.out
python3 test.py > python.out
diff lua.out python.out >/dev/null 2>&1
RESULT=$?
if [[ RESULT -eq 0 ]]; then
echo "PASS"
else
echo "FAIL"
echo "Press ENTER to open vimdiff"
read
vimdiff lua.out python.out
fi