Ary Borenszweig

Results 414 comments of Ary Borenszweig

Maybe I didn't make myself clear, but the idea is not to change how `days, hours, minutes = time_components` work but, as I proposed in #2617 to be able to...

To be honest, I don't think we'll do anything about this. You get an index error whole changing code and that's totally fine.

Right now, a proc that returns X isn't implicitly castable to a proc that returns X | Y. In your case you have `->{}`, which is `Proc(Nil)`, but you require...

The problem is that a proc doesn't know what type it returns, only the compiler knows this when generating the executable. So, if you have a Proc returning X, when...

as doesn't work, I was just saying there's a way to fake it. And no, these casts will never be done

Oooh...! `fork` doesn't work at all in interpreted mode, but I don't know why. Maybe we could at least avoid it in that scenario?

This was fixed in the past when we started parsing `if` as a statement, in addition to parsing it as an expression.

> Yet we make use of this concept in the compiler I don't quite agree. We use exceptions for control flow. That's contrived, but valid. People do this in languages...

Yet another alternative is to deprecate skip_file and stop using it. You can achieve the same thing by not requiring a file.

I also wonder whether anyone outside this repo is using skip_file. My guess is no, because we use it for platform-de pendent code. In that case, we could refactor our...