Louis Pilfold
Louis Pilfold
There is some info here. https://rust-lang-nursery.github.io/cli-wg/tutorial/packaging.html I'll try this manually for the next release and then we can automate after.
That's a great use case, but these APIs are not at all stable and there are often major internal changes with patch versions of Gleam. The cost of stablising compiler...
JSX is only useful for HTML and is more complicated to implement compared to templates. It also performs much worse than templates unless we do a lot of optimisations. If...
The above code for the application and framework code won't be possible as we cannot dynamically derive values, and the paths have to be static at compile time for them...
It's not possible to implement type safe templates in userland without a macro system, which Gleam does not have. Because of this I'm considering this suitable for inclusion in the...
This is another interesting area to look at, though I'm not sure there is a one size fits all solution, so userland implementation is more attractive If you've not seen...
This is not a HTML generation system but a generic string templating system that could be used to render strings containing any content in any format. i.e. HTML, XML, plain...
With the current work on a type provider design I think this could in future be implemented in userland.
It looks like Zigler uses Elixir macros, if they have support for Erlang we would be able to use it from Gleam. May be worth reaching out to them to...
I think constants would be a good place to start. We can always extend this feature later.