diff --git a/cheatsheets/gleam-for-elixir-users.md b/cheatsheets/gleam-for-elixir-users.md index 9e1ddfe0..1a8a2157 100644 --- a/cheatsheets/gleam-for-elixir-users.md +++ b/cheatsheets/gleam-for-elixir-users.md @@ -582,6 +582,8 @@ dict.from_list([#("key1", "value1"), #("key2", 2)]) // Type error! Custom type allows you to define a collection data type with a fixed number of named fields, and the values in those fields can be of differing types. +### Records + #### Elixir Elixir uses Structs which are implemented using Erlang's Map.