Gears
Gears
Currently, if you run the following code: ```gleam pub fn main() { let size = 2 } ``` The compiler will allow it, but when run, it produces an erlang...
For example: ```gleam import gleam/dict type Grid(a) { Grid(Dict(#(Int, Int), a)) } ``` This is an error, since `Dict` is not imported. However, `gleam/dict` is. So we could either give...
This PR updates `gleam_json` to use the new JavaScript API.
The following Gleam code is valid: ```gleam case something { True if record.field.thing -> 1 False if record.field.other_thing -> 0 } ``` However it is not recognised by the grammar...