zlacker

[parent] [thread] 2 comments
1. tymsca+(OP)[view] [source] 2025-12-13 19:38:21
I was also pretty surprised about the performance. It's not C, but it's so much faster than I'd guessed.

I do agree the language server is great. And it works in basically any IDE, which is another huge bonus.

With regards to having to type `list.map`, you actually don't need to! You can do this:

  import gleam/list.{range, map}
  import gleam/int

  pub fn main() {
    range(0,10) |> map(int.to_string) |> echo
  }
Some libraries just aren't there, and I do wonder how hard it would be to port C libraries over. Something I want to play with!
replies(1): >>mjmas+g1
2. mjmas+g1[view] [source] 2025-12-13 19:46:07
>>tymsca+(OP)
double space before each line for code formatting
replies(1): >>tymsca+O1
◧◩
3. tymsca+O1[view] [source] [discussion] 2025-12-13 19:49:23
>>mjmas+g1
Thank you! TIL
[go to top]