Wouter van Oortmerssen

Results 666 comments of Wouter van Oortmerssen

As I've said before, making this more automatic would require someone to set up some kind of publishing, or do it manually. I myself have zero familiarity with nuget.

There is no roadmap, just people making PRs. Someone would have to implement it.

I am guessing CMake assumes that anything that is generated by its step is a temp build file and should thus be deleted?

Yup, there is no reason it can't be supported, other than that no-one has taken the time to do it. PRs welcome!

I guess I've simply never had a need for it. It could definitely be added.

Yes, that is unfortunate. It uses spacing in this case to distinguish between a regular function call, and a parentheses-less call that uses bracketing for precedence. For example, `f (1...

Lobster's current parsing is so generic, that even `if`, `for` and `while` are parsed as function calls. They have the same syntax as any other functions that take lambda arguments.....

@argvsc47 that may be nice to add, but does not relate to the discussion above afaik?

@wadetb thanks for the feedback! Lobster's current co-routines are indeed asymmetric much like Lua, and each have their own stack that is not restricted to the top level function. This...

@wadetb Yup, I had something similar in mind to your code, and this would work in Lobster as-is just the same. The signals are a nice addition, though in your...