Hi guys,
I just bought a Windows computer w/ Windows 11 installed. Just installed Nim and now I'm trying to run a simple program:
import jester, browsers, threadpool
spawn openDefaultBrowser("http://localhost:5000/")
var jest = initJester(newSettings(port=5000.Port))
jest.serve()
using the command nim c -r --threads:on server.nim
It compiles but when it tries to run I get a message "the code execution cannot proceed because libwinpthread-1.dll was not found". I have no clue what this is. This works fine on my Mac. Any idea? I first tried looking up this problem in the forum but found nothing
The problem here is that you are using windows, that is the major problem :)
But seriously, I strongly advice if you are using a language such as nim to code on linux, not only is linux nicer to use for developers, but it provides more support for c compilers, as nim is a transpiled programming language.
Also final thing, linux kernel is open source, so as long as you stay away from proprietary software which supports linux, you will have your privacy :)
Polarian
But seriously, I strongly advice if you are using a language such as nim to code on linux, not only is linux nicer to use for developers, but it provides more support for c compilers, as nim is a transpiled programming language.
Is that what you tell your customers when you deliver another crappy windows software? ;)