Compiling error in VScode

Hello!
I recently installed the Julia extension on my Visual Studio, I already configured the executablePath to the .exe location in my Appdata, however after getting no errors, when I compile a simple ‘Hello World’ program it shows the following error message:


My settings look like this:

    "julia.executablePath": "C:\\Users\\jorge\\AppData\\Local\\Programs\\Julia 1.5.3\\bin\\julia",

And my code (although I feel that is not wrong I put it here):

msg = "Hello World"
print(msg)

What am I doing wrong?