This is a silly idea for programming language I had. I didn't give it much thought, and the syntax & edge case rules are just a placeholder.
The only structured data type is the "record".
A record is a key-value mapping. It can also be typed.
MyRecord = (
value: Int = 0,
other_value = value + 24
)