drop

one of the documented procedures in this installation of the ACS
Usage:
drop   n   xs
What it does:
returns the remaining elements of xs (without the first n)
Defined in: /web/philip/tcl/ad-functional.tcl

Source code:


    lrange $xs $n [expr [llength $xs]-1]


philg@mit.edu