Louis Pilfold
Louis Pilfold
As the runner is macOS amd64. We will likely need to wait for GitHub to support arm64 Disabling the check for now.
https://rust-lang.github.io/rustup/cross-compilation.html
```rust /// This is a function that does... if erlang { fn thing() { todo } } if javascript { fn thing() { todo } } ``` This will reduce...
It would be useful to be able to pattern match on the prefix of a string in the same way that we can for bitstrings. What could the syntax be?...
In the style of https://gleam.run/cheatsheets/gleam-for-elixir-users/
```rust import a import a.{one} import a.{two} ``` Is formatted as ```rust import a.{one, two} ``` Note imports with an `as` clause should not be merged.
It would be nice to be able to re-export a type or function from another module. Here's an idea for a syntax: ```rust // one.gleam pub type MyType { MyConstructor...
Gleam should be able to infer the types of this code: ```rust pub fn call_with_self(f) { f(f) } ``` Currently it cannot. https://elixirforum.com/t/gleam-a-statically-typed-language-for-the-erlang-vm/20349/165
Currently debugging is challenging. We should be as good as gen_server.
## Proposal Given a live coding performance where the user is using `echo $CODE | sonic-pi-tool eval-stdin --save some/dir` at the end of the performance the given directory would contain...