Yashas Samaga B L
Yashas Samaga B L
I think we should have our own assert system (like `PAWNCC_ASSERT()` or something) so that these stay in release builds. Many libraries do this.
https://github.com/pawn-lang/compiler/wiki/Building-From-Source
@pawn-lang/compiler is the PR relevant? Do we use the maintain it here?
@AlexDrift any news?
I think we should introduce a set of completely new extensions instead of overloading `enum`. `enum` is already being overloaded/abused to make `struct`. This has unwanted side effects such as...
Can we just sit together and draft a new version of Pawn? There are too many problems. Why propagate these broken things in the name of backward compatibility? We could...
I think this should be an opt-in experimental feature controlled by a compiler flag for now. Maybe a few select libraries could provide an optional conditionally compiled OO-like code and...
"... to merge 1 commit into [pawn-lang:master](https://github.com/pawn-lang/compiler) from" master or dev?
What is wrong with: ``` "abc" \ "asdasdasdas"\ "adasdasd" ``` and I wonder why this doesn't work: ``` "abc" "asdasdasdas" "adasdasd" ``` when this works ``` "abc" "asdasdasdas" "adasdasd" ```
What about: ``` new const str[] = "This is a multi line string" \ "which contains lines of variable sizes" \ "but can still be made to look good" \...