summaryrefslogtreecommitdiff
path: root/src/ast/types/BoolType.java
blob: 01e2cd5e798376f623753bcfbbfbd0bfb85c799d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package ast.types;

/**
 * A boolean type. A bool is True or False.
 */
public class BoolType extends Type {

    @Override
    public String toPrint(String prefix) {
        return prefix + "Bool\n";
    }
}