by danniel <danniel@[EMAIL PROTECTED]
>
May 6, 2008 at 12:26 AM
On May 5, 6:37=A0pm, nour <nour.laou...@[EMAIL PROTECTED]
> wrote:
> Hi everybody!
> Please how can I delete an elelment of a skill list?
Hi,
you can use the "remove" option:
for example -
lst=3Dlist(1 2 3 4)
lst2=3Dremove(3 lst)
now
lst=3D(1 2 3 4) ; and
lst2=3D(1 2 4)
or you can use "remd":
remd(3 lst)
now
lst=3D(1 2 4)