https://education.ti.com/en/guidebook/d ... 0C592/89ti

m1:=[1,2;3,4]
m2:=[5;6]
augment(m1,m2)
[[1,2,5],[3,4,6]]
m2:=[5,6]
augment(m1,m2)
[[1,2],[3,4],5,6]

[[1,2],[3,4],[5,6]]

postscript:
- the assignment operator (=>, →) on the worksheet does not work
[1,2; 3,4] → m1
- the semicolon is not interpreted after the second row
[ 1,5,3; 4,2,1; 6,-2,1 ]
[ [[1,5,3],[4,2,1]], [6,-2,1] ]=(
[[1,5,3],[4,2,1],[6,-2,1]] =)