gleam icon indicating copy to clipboard operation
gleam copied to clipboard

⭐️ A friendly language for building type-safe, scalable systems!

Results 441 gleam issues
Sort by recently updated
recently updated
newest added

It's more what the Rust LSP does... I constantly mis-hover a function argument, and the LSP shows the call. I constantly try to create a variable and hover it to...

Closes #1634 It works, styling is not finished though. A demo is live https://deploy-gleam-docs.web.app/ I wonder how we should do the mobile version of it... Please pardon the horrible rust...

Hi, I have the following code ``` gleam fn assert_admin(deps: Deps, cookies) -> Bool { case { assert Ok(val) = get_session_cookie(from: cookies, get: cookie_key_name) assert Ok(val) = deps.crypto_engine.decode(val) Ok(val) }...

bug
area:formatter

![image](https://user-images.githubusercontent.com/12750442/183792943-6aa1ab56-05ff-4fbf-90b2-41c0036037c9.png)

bug
help wanted
good first issue
area:codegen

On nightly and latest stable. Given this input: ```gleam import gleam/io pub const answer = 42 pub fn map(result, fun) { case result { Ok(a) -> Ok(fun(a)) Error(e) -> Error(e)...

bug
help wanted
good first issue
area:codegen

```gleam import gleam/javascript/promise pub type Task(a) = fn() -> promise.Promise(a) pub fn main() { 1 } ``` compiles to this ```ts import * as promise from "../../gleam_javascript/dist/gleam/javascript/promise.d.ts"; export type Task...

bug
help wanted
good first issue
area:codegen

I think that having a mechanical mechanism to verify and generate markdown content would be a nice feature. It should read markdown files and execute the content of gleam code...

Repeated quotes cause stack overflow in lexer Good day, while fuzzing the compiler with honggfuzz for a competition I came across he following stack overflow in the lexer caused by...

bug
help wanted
area:parser

Currently we qualify the second type when there is a name clash: ``` #(Message, app/queue.Message) ``` This helps a lot, but sometimes it is unclear where the first type is...

help wanted
area:documentation
area:errors