Compound data type: Difference between revisions

(→‎{{header|Tcl}}: formatting)
Line 568:
 
=={{header|Tcl}}==
 
This appears to be a sub-functionality of a proper associative array:
<lang tcl>array set point {x 4 y 5}
 
array set point {x 4 (y) 5}7
puts "Point setis {$point(x),$point(y) 7}"
# => puts "Point is {$point(x)4,$point(y)7}"</lang>
# => Point is {4,7}
 
=={{header|Visual Basic .NET}}==
Anonymous user