Maybe named tuples if they fit your case. const table = ( key1: (param1: "a string", param2: 100), key2: (param1: "another string", param2: 200) ) echo table.key1.param1 # a string Run
- Table with different types of values? ElAfalw
- Table with different types of values? Araq
- Table with different types of values? Hlaaftana