RosettaCodeData/Task/Multi-dimensional-array/ALGOL-68/multi-dimensional-array-9.alg

4 lines
216 B
Plaintext

# E.g. the following prints the lower and upper bounds of the first two #
# indexes of a ( in this case, 1, 5, 1 and 4 ) #
print( ( 1 LWB a, 1 UPB a, 2 LWB a, 2 UPB a, newline ) );