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