Artifact 8444ee883f0ebccc003a1414c3c9558a554dc72712b2eafc59d7d4f448180786:
- Executable file
r37/lisp/csl/jlisp/CarFn.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: 212) [annotate] [blame] [check-ins using] [more...]
class CarFn extends BuiltinFunction { public LispObject op1(LispObject arg1) throws Exception { if (arg1.atom) return error("Attempt to take car of an atom"); else return arg1.car; } }