CalcMe documentation Commands Programming Functions Take Take Returns the first (last) elements of a list. Syntaxtake(List, Integer) Description Given a list L and an integer n: if nn is positive, returns the first nn elements of LL; if nn is negative returns the last nn elements of LL. Related functions Head, Index