blob: 7fc28eed22ea64427b3cb6688cce639716da8dec (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.clp.project.ast.types;
/**
* A boolean type. A bool is True or False.
*/
public class BoolType extends Type {
public String toPrint(String prefix) {
return prefix + "Bool\n";
}
}
|