Elixir - update struct value
Today I've Learned posthttps://elixir-lang.org/getting-started/structs.html
user = %User{age: 27, name: "John"}
user = %User{ user | last_name: "Smith"}
Entire blog website and all the articles can be forked from this Github Repo