Veit Heller

Results 167 comments of Veit Heller

There is a VIM plugin (documented [here](https://carp-lang.github.io/carp-docs/Tooling.html), you can find it [here](https://github.com/hellerve/carp-vim)). No VSCode as of now, which is probably because none of the current contributors are (to my knowledge)...

A note on the VIM plugin: it also highlights compiler errors etc :)

I had a lot to say about this, so I split this into two sections: `Critique` and `Potential Implementation`. ## Critique While I sometimes enjoy this slicing in Python, I’ve...

> I would suggest to omit the step argument, in order to concentrate on the case which I use on a regular basis. Makes sense; though as mentioned `Array.range` and...

I don’t think so because the error happens at parse time. I think this is before `Char` plays a role, but I’ll dig into it this weekend and let you...

Actually, this is behaving as intended, since `\b` is a special escape sequence for patterns (used for balanced strings, and takes two arguments in the form of the next two...

Is it possible `length` is recomputed every time the first argument is used/looked up (maybe this is related to laziness in a subtle way)?

I think this is a great proposal! An alternative would be to call for specific implementations of `delete` for `Pointer` where applicable for the user, but the problem here is...

Another thing to note is that the behavior of `address` would need to change: it would either need to consume the data and return a pointer (since the data is...

Don’t forget that `~` is already used for calling function references as well. That’s not a deal breaker in refs, but could be visually, confusing.