Hello, I would like to create a tuple dynamically at runtime. Is this possible?
I will have strings, types, and values. But not until runtime when all the data
is assembled. I don't even necessarily care about the names, but it is nice.
But I do need a heterogeneous data structure.
So how would I create from dynamic data?
Any help greatly appreciated.
type
Person = tuple
name: string
age: int
Run
