Barnaby Keene

Results 182 comments of Barnaby Keene

Not as far as I know.

I really like this proposal! I've seen many "OO" attempts in Pawn and this seems like the most elegant. This reminds me of how Golang and Python handle things (Golang...

> I also made the compiler not issue warning 210 if an array is passed to a native function, because some of SA-MP natives are not const-correct. This was fixed...

It won't be closed, that message is wrong, sorry. As for maintainers, the team are just doing this in their spare time so things will only happen at a certain...

I'd love to see this too, multi-line strings can get messy with C-style literals due to the excessive use of backslashes to indicate newlines. One question that always comes up...

Oh do you mean concatenation? ```c func( "line1" \ "line2" ); ``` Yeah that makes sense, but I think if a multi-line string syntax such as backticks or triple quotes...

I just realised another brilliant benefit of Go style backtick strings. They aren't just multi-line strings, they are *fully escaped* strings, which means you can use `\` and `"` literals...

Using muliple lines of `"..." \` is functionally fine but the issue is, the additional `"` `\` characters just add unnecessary clutter to parse while reading. And I agree with...

There's quite a difference between "confusion" and simply learning a new feature.

Y'know what? I never thought of that... I don't see any reason not to make `"` just support newlines.