Artifact 205e1afe36d590c07e8d3ffc74cee9adb2cc93ff91c38142923ce7c57745ef35:
- Executable file
r37/lisp/csl/jlisp/CdrFn.java
— 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: 282) [annotate] [blame] [check-ins using] [more...]
//24/02/02 created for seeing if I have all tools necessary for Lisp class CdrFn extends BuiltinFunction { public LispObject op1(LispObject arg1) throws Exception { if (arg1.atom) return error("Attempt to take cdr of an atom"); else return arg1.cdr; } }