Louis Pilfold

Results 761 comments of Louis Pilfold

> trivially easy I would say this comes down to the user. Many people I have worked with struggle with simple `IO`. I guess a good question is what is...

I quite like the split between pure values and 0 arity functions

I presumed that a zero sorry arity function would be one that takes unit () as an argument, but compiles to a regular Erlang zero arity function to make interop...

Thanks for the report! Yes this is the two `file` modules conflicting with each other. I wonder what we should do in this case... Perhaps the Gleam build tool could...

Sounds good, but we'll need to ensure that Erlang and JS have exactly the same behaviour for the new escape code.

- `"Hello ${name"` : parse error, unexpected EOF - `"Hello $name}"` : string - `"Hello {name}"` : string - `"Hello ${}"` : parse error, unexpected `{` - `"Hello ${"Dr. ${name}"}"`...

Yes that's right, any arbitrary expression is to be permitted within `${}`, similiar to Elixir, JavaScript or Ruby.

Holding off on this as we need to consider how it would fit with string pattern matching.