I have the following testing scirpt:
<?php
echo 'Hello' // mistake - missing semicolon
echo 'Hi';
echo $hi; // mistake - undefined variable
?>
I tried to check this script by NppExec - I used the command:
$(NPP_DIRECTORY)\notepad++.exe -n $(FULL_CURRENT_PATH)
And I got for me an unexpected output:
Process started >>>
<<< Process finished. (Exit code 0)
================ READY ================
I expected some Error message. Does it mean that I use NppExec wrong? Thank you