3 lines
153 B
Text
3 lines
153 B
Text
{def A {A.new 1 2 3 4 5 6}} -> [1,2,3,4,5,6]
|
|
{def B {A.new 7 8 9}} -> [7,8,9]
|
|
{A.concat {A} {B}} -> [1,2,3,4,5,6,7,8,9]
|