take
one of
the documented procedures
in this installation of the ACS
Usage:
take
n xs
What it does:
returns the first n elements of xs
Defined in:
/web/philip/tcl/ad-functional.tcl
Source code:
lrange $xs 0 [expr $n-1]
philg@mit.edu