4 lines
110 B
Text
4 lines
110 B
Text
(de insertAfter (Item Lst New)
|
|
(if (index Item Lst)
|
|
(conc (cut @ 'Lst) (cons New Lst))
|
|
Lst ) )
|