Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Array-concatenation/Maple/array-concatenation-3.maple
Normal file
11
Task/Array-concatenation/Maple/array-concatenation-3.maple
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
> L1 := [ 1, 2, 3 ];
|
||||
L1 := [1, 2, 3]
|
||||
|
||||
> L2 := [ a, b, c ];
|
||||
L2 := [a, b, c]
|
||||
|
||||
> [ op( L1 ), op( L2 ) ];
|
||||
[1, 2, 3, a, b, c]
|
||||
|
||||
> [ L1[], L2[] ]; # equivalent, just different syntax
|
||||
[1, 2, 3, a, b, c]
|
||||
Loading…
Add table
Add a link
Reference in a new issue