001package org.clafer.ast;
002
003/**
004 * The primitive boolean Clafer.
005 *
006 * @author jimmy
007 */
008public class AstBoolClafer extends AstPrimClafer {
009
010    public static final AstBoolClafer Singleton = new AstBoolClafer();
011
012    private AstBoolClafer() {
013        super("bool");
014    }
015}