Changeset 3481


Ignore:
Timestamp:
08/24/03 16:23:22 (20 years ago)
Author:
piso
Message:

COMPLEXP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/Primitives.java

    r3480 r3481  
    33 *
    44 * Copyright (C) 2002-2003 Peter Graves
    5  * $Id: Primitives.java,v 1.342 2003-08-24 16:19:52 piso Exp $
     5 * $Id: Primitives.java,v 1.343 2003-08-24 16:23:22 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    47794779        }
    47804780    };
     4781
     4782    // ### complexp
     4783    private static final Primitive1 COMPLEXP = new Primitive1("complexp")
     4784    {
     4785        public LispObject execute(LispObject arg)
     4786        {
     4787            return arg instanceof Complex ? T : NIL;
     4788        }
     4789    };
    47814790}
Note: See TracChangeset for help on using the changeset viewer.