-
How to reproduce:
1. Create this gleam file and a corresponding `wibble_ffi.mjs`.
```gleam
pub fn main() {
external_wibble()
}
@external(javascript, "./wibble_ffi.mjs", "wibble")
fn ext…
-
Currently, for this code:
```gleam
case True {}
```
The compiler produces this error:
```
error: Inexhaustive patterns
┌─ FILE
│
5 │ ╭ case True {
6 │ │
7 │ │ }
│ …
-
https://discord.com/channels/768594524158427167/1281967484731265044
Your package uses cli, db, templates namespaces which can lead to a conflicts with a really high chance.
Guria updated
1 month ago
-
I am completely new to gleam & wisp. I was trying to follow an article to setup my project for a web app. I did the following:
`
gleam new app
`
then
`
gleam add wisp lustre mist gleam_http glea…
-
While editing a page, the `Move` button allows me to select a folder as target, but the page isn't moved there.
I can move a page into the folder using it's `Advanced` => `Parent` select box though…
ulab updated
3 months ago
-
While trying to do some stress tests to my registry library [chip](https://hex.pm/packages/chip) I started to notice big slowdowns when the registry goes into the `100_000` monitored subjects mark; ba…
-
As far as I understand it, a new subject is being created here but then it's thrown away and nothing selects from it, so the `SetSelector` call is not received: https://github.com/lustre-labs/lustre/b…
Nicd updated
2 months ago
-
1. There are no tests for `UnusedLiteral` and `ImplicitlyDiscardedResult` in `expression_discarded` function, as far as I can tell. Only `UnusedValue` warning is tested.
2. The warning itself is co…
-
```
❯ gleam build
Compiling certifi
error: Program not found
The program `rebar3.cmd` was not found. Is it installed?
````
https://github.com/erlef/setup-beam/issues/147
-
```gleam
import gleam/io
pub fn main() {
let a =
case a {
-> io.debug("first")
_ -> io.debug("second")
}
}
```
This code produces no output on JS backend: try here http…