Artifact f4e1718ac6ef40b0341ff0a1b3a0b8cbf93d870270ffef85e3a89576a4663b31:
- Executable file
r37/lisp/csl/html/r37_0063.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 700) [annotate] [blame] [check-ins using] [more...]
<A NAME=SECOND> <TITLE>SECOND</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>SECOND</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>second</em> operator returns the second element of a list. <P> <H3> syntax: </H3> <P> <P> <em>second</em>(<list>) or <em>second</em> <list> <P> <P> <P> <P> <list> must be a list with at least two elements, to avoid an error message. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> alist := {a,b,c,d}; ALIST := {A,B,C,D} second alist; B blist := {x,{aa,bb,cc},z}; BLIST := {X,{AA,BB,CC},Z} second second blist; BB </TT></PRE><P>