All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scm.primnode Maven / Gradle / Ivy

package scm;

                                // Encapsulate a random java class
                                // as a new type.

class primnode implements Obj
{
  Object val;

  public Obj eval(Env e) { return this; }

  primnode(Object thing) { this.val = thing; }

  public String toString() { return val.toString(); }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy