Jason Beetham
Jason Beetham
Does it not behave the same but by reusing the `x` sym you've made it bind to the proc taking float at the end? So in the end there is...
Tangentially related: https://github.com/nim-lang/Nim/issues/22445 The type system just does not see a generic body without generic parameters as a different type. ```nim type Obj[T] = object a: int ``` Has the...
This is required for dispatch, overloaded macros and templates have to semantically check arguments for a call in cases of ambiguity.
Just ran into this as well myself. Mingw runs on case sensitive paths, Windows paths are case insensitive so it does not matter for windows and enables compilation on non-Windows...
Nothing in the output is remotely helpful, I do see `vmgen.nim` which makes me think it's not nimscripter but Nim itself that is not vcc compliant. Can you try compiling...
VCC is not overly supported by Nim so don't know what to say then.
Compiling with `--experimental:callOperator` instead works as intended
Nim's VM relies on the compiler, so it requires some amount of OS calls to function. You would need to fork the nim compiler to handle that. Personally for embedded...
I couldnt resist trying the following, and it might be related to the issue. The types of a forward declared procedure seems to be unresolved until the implementation is specified...
We already have each version of the stdlib on github through their respective branches, because of that we could do `import std/json` which without configuration fetches the present `json` from...