RickBarretto
RickBarretto
So, I got some doubts about it. 1. `let s` and `var s`: First, if I use: ```nim proc some_function(var s) = let s = s for i in s:...
Hummmm, got it! Thank you! I'll change this code! :wink:
Do you think it should work? ```nim proc cleanAppendInPlace*(s: var Value, t: Value) {.inline,enforceNoRaises.} = var cnt = 0 # I didn't set s.a.LenSet here, # because `s`'s length can...
> And - yet another comment (sorry for... bombarding you :) ): No problem! 😄 > `cleanAppendInPlace` is meant to work on Value objects (and then access the ValueArray at...
> (I ended up editing your comment by mistake! lol) I see that, but no problem. It seems clear to me. I'll do a commit, so! 😎
@drkameleon the CI is breaking. Broken code is here: [vm/values/clean.nim](https://github.com/arturo-lang/arturo/blob/master/src/vm/values/clean.nim#L24) CI is [giving it](https://github.com/arturo-lang/arturo/actions/runs/3251173734/jobs/5335816555): ``` /Users/runner/work/arturo/arturo/src/vm/vm.nim(70, 11) template/generic instantiation of `importLib` from here /Users/runner/work/arturo/arturo/src/helpers/arrays.nim(207, 15) template/generic instantiation of `cleanBlock` from...
@drkameleon CI is passing now! 😄
I thought this problem was just for Poetry... Look what I get when I try to install a package that depends on it: ``` Note: This error originates from the...
@impredicative, thanks a lot for the advise!
About this new type, how does should it work?