/* Author: Jeff Dalton * Updated: Wed Mar 14 13:15:52 2001 by Jeff Dalton */ package ix.util.lisp; /** Keywords - symbols generally used as literals. */ public class Keyword extends Symbol { protected Keyword(String name) { super(name); } }