aocla/examples/cat.aocla

12 lines
198 B
Text
Raw Normal View History

2023-01-30 11:45:55 +01:00
// List concatenation. This procedure is part of the standard
// library.
// [1 2 3] [4 5 6] cat => [1 2 3 4 5 6]
[(a b)
$b [$a -> (a)] foreach
$a
] 'cat def
[1 2 3] [4 5 6] cat
showstack