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 }
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:
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!