I want to define a large record using a composite of smaller records, in an attempt to make the declaration more readable.
I'm trying to do something like this:
-record(molly, {xx=0, yy=1}).
-record(harry, {#molly, zz=2}.
The above of course does not compile :-(
Is there some way to do this ??