PureFox48
PureFox48
The purpose of this proposal is to make procedural programming in Wren easier and more familiar to users of other languages by introducing top-level static (TLS) methods. This is how...
Although I've been using Wren solidly for well over a year now, one thing I hadn't realized until today is that, even if your script contains no classes, it may...
Suggested wording to be added to Variables guide in docs following discussion in wren-lang#1066. Thanks to @GiffE for drawing attention to this in the first place.
Code Project highlighted [this article](https://krebsonsecurity.com/2021/11/trojan-source-bug-threatens-the-security-of-all-code/) in its Daily News bulletin today. Although it's nothing new - the Go community [have been aware of it](https://github.com/golang/go/issues/20209) since 2017 - I thought it...
One thing I've found myself missing lately is character literals. My code seems to have a lot of magic numbers such as 48, 65, 90, 97 amd 122 which is...
Adding docs for `==` and `!=` to Num class for this purpose and also a note to `Sign` method. This replaces #1054 which should be referred to for context.
At present `break` and `continue` only break out of or continue from the end of the immediately enclosing loop (`for` or `while`). If you want to break out of two...
Although ranges in Wren are good they could, IMHO, be made better in two respects. Firstly, there should be a way to specify the step which currently is always one....
Commits to fix a couple of problems: 1. The `Exiting a module early` section in the light of https://github.com/wren-lang/wren/issues/974#issuecomment-821582815 by @clsource. Not sure we need to go into too much...
Fixes #1176.