Artifact 0dfcbb98d319e4573e8d5fbdf3d0909f11c0878854b5b8fc1fac47ca39edcf06:
- Executable file
r37/lisp/csl/jlisp/StaticFns.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: 231) [annotate] [blame] [check-ins using] [more...]
public class StaticFns { static LispObject cons(LispObject a, LispObject b) { return new Cons(a, b); } static LispObject cons3(LispObject a, LispObject b, LispObject c) { return new Cons(a, new Cons(b, c)); } }