ringabout
ringabout
```nim iterator hello(x: int): lent int = yield x for i in hello(12): echo i ``` ``` error: lvalue required as unary '&' operand i__fHkUd8GI567EsGOsPkB2Sg = (&((NI) 12)); ``` compile?
Sometimes users need to test different Nim versions with choosenim, e.g. running a bisect in https://github.com/juancarlospaco/nimrun-action
fixes #23564 perhaps handle generic aliases (tyGenericInst for aliases types) if needed
fixes #24720 It seems that Nim lacks something like `derefs` in Nimony. i.e. it cannot handle tuple types containing view types: e.g. `(lent T, lent T)`. So I fix the...
It seems that type inference is not good enough for empty array in templates. I'm struggling with ```nim import std/tables template accResult() = var s = newTable[int, seq[int]]() var x...
fixes https://github.com/nim-lang/Nim/issues/23395 fixes https://github.com/nim-lang/Nim/issues/23395
…irst keystroke fixes #140 ref https://github.com/jangko/nim-noise/pull/35
``` Error: '`' expected ```