Compiler vs Interpreter

Run the code below using different translators. Notice how they handle the ERROR on Line 4 differently.

game.py
print("Welcome")
load_graphics()
print("Start Game")
syntx_error("Oops")
print("Game Over")
Select a tool to start...
Terminal Output

Observation Notes

Experiment with both buttons. Pay attention to when the error is reported.