1 21 22 package org.armedbear.lisp; 23 24 public final class machine_type extends Primitive0 26 { 27 private machine_type() 28 { 29 super("machine-type"); 30 } 31 32 public LispObject execute() throws ConditionThrowable 33 { 34 return new SimpleString(System.getProperty("os.arch")); 35 } 36 37 private static final Primitive0 MACHINE_TYPE = new machine_type(); 38 } 39 | Popular Tags |