Wouter van Oortmerssen

Results 666 comments of Wouter van Oortmerssen

By now, Lobster JITs fine on ARM on the Mac, whatever issue is happening above may already be fixed, but would need to be tested by someone with a RPi,...

We are still building for other platforms using their native build tools, e.g. Visual Studio, where adding a commit id/date to the code would be prohibitive complex and undesirable. Instead,...

> is this planned to be added, or is this just a dead thread? Neither. This is not an open source project with permanent staffing, so things get added when...

`guard false` only shortcuts the current block, so wouldn't allow for the more common `if ...: continue`. Also, `guard false` never executes the statements following it, so would be non-sensical.

What changed since my last comment is that `if`, `for` and `while` are now parsed independently from function calls, which will have fixed this issue for them. It is still...

Since this issue was originally posted, more people have mentioned their dislike for how namespaces use `_`, so I am indeed considering changing it, but it is an invasive change,...

There's now a poll going on in the Lobster Discord on what namespacing should be like :) https://discord.gg/szJPYdX

We have hashing in scalars now, this can be closed.

@t2b3 maybe worth looking at?

Reading the above discussion again, I'd actually be most interested in this form: ``` switch obj: case Monster: return hp + switch armor: case Armor: a case SwimSuit: -1 case...