Maximilian Roos

Results 1204 comments of Maximilian Roos

No update at the moment — please feel free to explore what's there at the moment — and now I'm back online I'll try and get to this at some...

I think that's what the `Current implementation plans do not include module declarations, but loading of all files under the compilation path.` caveat means, but feel free to make it...

> Would it be correct to say this at the top of the page, and have a strong warning above each of the examples? Yes, particularly strengthening the warning!

I do think this is unfriendly viewed in isolation, but I also recognize that part of having a compiler that is friendly to the user is it often being stricter,...

Some of this (less well-developed) was in this comment back in the ancient days of 2022: https://github.com/PRQL/prql/issues/1069#issuecomment-1344867546. I think it's worth considering the different types of window functions, which IIRC...

Thanks for the issue @Nezteb We'd be keen for it to be published on Hex! https://github.com/PRQL/prql/issues/1510 stalled but we'd be happy for someone to take that up... > I think...

Could we instead make it right-associative? e.g. with: ```elm let f = x y -> x z -> x + y + z ``` If `->` is right associative, then...

I was less keen on the `func` keyword, but not immovably so. I agree it slows down the parsing a bit. But the parsing is still pretty fast! And at...

Presumably a language such as Haskell is similar? i.e. `f x y = x + y` could be lots of things until the `=`?

> Aren't all terms before `=` always function name and its args? Yes but same as with PRQL — _until we get to the `=`_ (or it our case, the...