PgBiel

Results 402 comments of PgBiel

Culprit: https://github.com/gleam-lang/gleam/commit/4977c1b7#diff-8e92b6138ea4c80a8897bb9a0adcc10f33a7a9b36b5a07d54c78e920b07f0d6eR634 Seems like some bad string replacing happened... :sweat_smile:

This article suggests it's possible with `cross`: https://reemus.dev/tldr/rust-cross-compilation-github-actions#heading-compiling-with-cross I saw you tried to do so here: https://github.com/Juhan280/gleam/actions/runs/8767097805/job/24060032517 Seems like a library is missing (`-lunwind` from the error). I wonder whether...

Actually, seems like this is a bug with `cross`, to be addressed soon by upstream (apparently already fixed on cross' main branch): https://github.com/cross-rs/cross/issues/1222 So we should be able to wait...

I believe the main point is that information about the types of values can be used for highlighting (depending on how your theme handles this information), but this is also...

That's an improvement for sure! Though I think that might not be enough (to just upload the `LICENSE` with the SPDX expression), as MIT requires distribution of the full license...

> You could put them both in the same file, or in the readme, or in the code. I don't believe either states the manner in which you include them....

Running `gleam clean` before the export seems to restore the correct behavior for me (once, but not for subsequent runs). It appears to only work if something was compiled.

I think it's this TODO here: https://github.com/gleam-lang/gleam/blob/176334cd31dffd07c857db7a7066b6a032d5086f/compiler-core/src/build/package_compiler.rs#L85-L89

Personally, I think the `gleam run` command is pretty good for this, since it has a good bit of customizability (target, runtime, arguments) which is sometimes needed when running things....

Write `#[= asdf] #lab` instead for now, this is a current limitation in how label attachment is parsed. The compiler can correctly associate the label-specific `` syntax with the entire...