blob: 20c2750bac5ec4d84db0b3a57d6b3e690419f92f (
plain)
1
2
3
4
5
6
7
8
9
10
|
package 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";
}
}
|