Louis Pilfold

Results 1860 comments of Louis Pilfold

Which proposed design are you referring to @GearsDatapacks ?

What do you mean it's the only one that works? What would be the syntax for assert without let?

Trailing as does not cause problems. The only thing it would do is force the programmer to specify a message for a todo or panic expression, but neither of those...

Today this format is used ```gleam let assert Ok(something) = some_function_with_lots_of_arguments(arg1, arg2, arg3) ``` So I think we'd format the message something like this ```gleam let assert Ok(something) = some_function_with_lots_of_arguments(arg1,...

I think the distance between the message and the first keyword being potentially large is not ideal as you said. I think it's the best trade-off for me atm.

We don't need to concern ourself with interaction with `echo` as it's purely for debugging and will only briefly be in the code.

This would be a fantastic addition! One thing we'll need to think about is the maturity of the documentation. If someone has time to translate X amount of documentation we'll...

Great suggestions there. I really like the idea of having fallbacks and the language being selectable.

Hello! You shouldn't need to do anything special target-wise as Gleam performs dead code elimination for code that is for other targets. > @josevalim when working on this I was...

Hi gang! I'm a bit stuck as to how `gleam compile-package` would create a `.app` file as the Gleam compiler doesn't know the names of all the BEAM modules produced...