Louis Pilfold
Louis Pilfold
That design would mean that you cannot use == with timestamps or use them as keys in a dict or a set, which seems like it would be irritating. What...
Sounds good to me! The Elm time package also has some functions for working with timestamps given a time zone. Do you think it would be useful to adopt any...
This really should be an error, going by the existing rules for top level definitions. It might break some existing programs though, so perhaps we will have to do a...
Sorry, I've found an issue while testing. If I have this code: ```gleam let assert [z] = { let assert [y] = { x } y } ``` And I...
Wow I made a mess of this rebase 😅
Hello! Nix produces a large support demand on Gleam core compared to other third party things, and it takes up more of our time than we can afford to spend...
> Is it the expectation that the file path for the Gleam executable should remain consistent and not change? No, you can change the executable location at any point and...
We could statically reject the specific case of `` as we can tell the size is longer than the array? What code would we generate if we were to pad...
Although we want to promote the use of timestamps as much as possible I think it might make sense to use calendar time here, since TOML doesn't permit you to...
That design would discard the offset information, which is encoded in the TOML. Let's store it as calendar time in the data structure, and then we can make getter functions...