Re: cannot countProcessor in compile time

2018-05-20 Thread Vantage
Even if this worked it would only have the processors of the computer compiling. not the computer running your program.

Re: Perfecting Nim

2018-04-29 Thread Vantage
performant code when you want -> sane/safe/easy defaults

changing the order in which checking for functions

2018-04-29 Thread Vantage
If you first make a mini-header file then define the functions wouldn't that ensure that you can call a function defined below the another function proc foo()= bar() proc bar()= discard 1+1 foo() the code above would result in an error