Timothee Cour
Timothee Cour
well you have an error here: /etc/nim.cfg(256, 1) Error: closing " expected what is cat /etc/nim.cfg?
i think the error `/etc/nim.cfg(256, 1) Error: closing " expected` is self-explanatory
remove the last line `" >> /tmp/nim.cfg'`
@AchalaSB I really don't understand, why can't you remove the last line of `/etc/nim.cfg` (at line 256) which contains `" >> /tmp/nim.cfg'` ; nim complains because line 256 starts with...
@AchalaSB > In my /cat/nim.cfg file there is only 235 lines.. but it is showing error at line 256. the file being read is /etc/nim.cfg, not /cat/nim.cfg
> ospath/os thing is only the first step but it's the only step needed to unblock nim-lang/Nim#14887, all other libraries mentioned there were patched :) > or we can just...
This works but requires manually editing the sdl file; Could those --targetPath --targetName be exposed in the command line? This would be useful, eg, for automating building via dub with...
related: https://github.com/nim-lang/Nim/issues/7435 note that alias PR (https://github.com/nim-lang/Nim/pull/11992) solves all of these problems using true lambdas, eg: `x ~> x`
> let identity = (x: int) -> int => x not very sweet for a syntax sugar; and very limited compared to `~>`: ```nim import macros,sugar proc id0(a: int): int...
> @timotheecour fixing the compiler's auto handling would also fix it. Why not do that? :) Passing a generic (implied by auto) to a proc (or more generally, a template,...