In Elm , is it possible to do something like this.
REPL
> a = {d = 4 , y = 5}
{ d = 4, y = 5 }
: { d : number, y : number1 }
> b = {b = 4,n=1}
{ b = 4, n = 1 }
: { b : number, n : number1 }
> c = {a | b | g=5}
I want c to contain all members of a and of b without individually naming them.
Is this possible?
Thanks