Execution of active file in REPL does not work anymore

Hello! I’ve been using julia since 2 months and really enjoyed it. But now I’m facing the problem that I

  • cannot execute code in-line in files anymore,
  • cannot execute an active file in the REPL unless I copy the code from the file into the REPL. But it works to run the file in a new process.

Two weeks before I didnt have these problems and I did not change anything on purpose. I am using Version 1.10.4 in vscode and I already updated all packages. To fix the problem I reset the settings to default, closed and opened vscode again, then it is possible to execute the active file in REPL once, afterwards it does not work anymore and in the settings file the following appears:

{
“terminal.integrated.commandsToSkipShell”: [
“language-julia.interrupt”
],
“julia.symbolCacheDownload”: true
}

Since the problem seems to be general I used this test code while trying to solve my problem
a = 1 + 1
b = 2 + 2
c = a + b
println("c = ", c)

Your help is very appreciated! Thank you for taking time!

the problem is fixed: a colleague proposed to uninstall julia and install another version, which solved the problem.