Tuple!() prints like
> Tuple!(type, name, type, name, type, name)( val, val, val )
too many spam for it.
not types printing for structs by default, so why it need here?
better solution:
for named values to print with names, for unnamed - just value
> (name1=val, name2=val, val)
or simpler
> (val, val, val)
cuz for structs (by default) no names too
Comment #1 by robert.schadek — 2024-12-01T16:35:36Z