RosettaCodeData/Task/Array-concatenation/IDL/array-concatenation-4.idl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
352 B
Text

> b = transpose(b)
> help,b
B INT = Array[1, 3]
> print,b
4
5
6
> print,[a,b]
Unable to concatenate variables because the dimensions do not agree: B.
Execution halted at: $MAIN$
> print,[[a],[b]]
Unable to concatenate variables because the dimensions do not agree: B.
Execution halted at: $MAIN$