I've seen similar issues and they've usually been about editing PATH. My PATH has C:\Nim\dist\mingw;C:\Nim\dist\mingw\bin;C:\Nim\bin;C:\Nim\dist\babel in it. I think this is correct.
I still get this output when I try to compile and run a program.
C:\Nim\learn\nim -c -r helloworld.nim c:\nim\config\nim.cfg(53, 3) Hint: added path: 'C:\Users\oleg\.babel\pkgs\' [Path] c:\nim\config\nim.cfg(54, 3) Hint: added path: 'C:\Users\oleg\.nimble\pkgs\' [Path] Hint: used config file 'C:\Nim\config\nim.cfg' [Conf] Error: invalid command: 'helloworld.nim'
I must be missing something obvious, but I can't figure it out. Sorry, I'm new to a lot of these things. Any help is greatly appreciated.
C:\Nim\learn\nim -c -r helloworld.nim
You need to use:
C:\Nim\learn\nim c -r helloworld.nim
Notice that I changed -c to c.
Thank. You.