Re: Nim new Playground/Pastebin of Spanish group

2020-02-21 Thread rockcavera
Very good! I am also happy to know that the South American community is getting organized (Argentina and Paraguay). I am Brazilian.

Re: ELI5: newruntime and arc

2020-01-16 Thread rockcavera
A few days ago I reported about not understanding the destructors document on the #nim @ freenode.net IRC channel. Unfortunately, as a weekend developer (just for fun), I will have to close my eyes to such changes until they are applied (something that scares).

Re: Recommended GUI library?

2019-12-10 Thread rockcavera
The SDL2.dll that comes with Nim is 32bits, you need to download the 64bits version if you are compiling a 64bits executable. I believe that is your problem.

Re: Recommended GUI library?

2019-12-08 Thread rockcavera
I'm also after a GUI package for Windows and Linux (at least) that has as few dependencies as possible. So far I'm using NiGui, but I'm not totally satisfied. I tested it on Windows and it seems to have some "problems" that bother who is a perfectionist. This issue is taking some time to

Re: Using different compilers on windows

2019-11-13 Thread rockcavera
I currently use Nim to program on Windows and leave 3 different compilers to use: MinGW (gcc), LLVM (clang) and TinyCC (tcc). To use them is simple, type at the command line to compile the source code nim: `nim c --cc: nimsource.nim` However, first you need to enter some settings in

Re: Cannot extract ZIP on Windows 10

2019-10-14 Thread rockcavera
Reinstall the zip package and try this: import zip/zipfiles {.passl: "-lz".} var z: ZipArchive if not z.open("test.zip"): echo "Opening zip failed" quit(1) z.extractAll("test") z.close() Run If you keep giving error, download

Re: 1.0.0 is here

2019-09-23 Thread rockcavera
Congratulations to all Nim's team.