I am learning F#. Trying to use CodeRunner in VSCode to test it. I coped a simple example program and tried to run it. got the F# error:
agents.fs(2,1): error FS0222: Files in libraries or multiple-file applications must begin with a namespace or module declaration, e.g. 'namespace SomeNamespace.SubNamespace' or 'module SomeNamespace.SomeModule'
which is fine, since I'm learning F# and I expect lots of mistakes. however, after fixing the error, I cannot run the program again. I get the error from VSCode:
"Code is already running!"
Which it isn't as far as I can see.
Whether is is running or not, I cannot see anyway to stop it or restart it other than restarting vscode
Hi @gbritton1 , as mentioned in README, to stop the running code, there are there wasys:
Ctrl+Alt+MF1 and then select/type Stop Code RunStop Code Run in context menuThen, you would see something like [Done] exited with ...

Let me know if it works for you!
got it.