blob: 766aee25b48f0255ef12a1a670d3cb6b1b5c8c35 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.clp.project.ast.types;
/**
* A void type. Voids return nothing.
*/
public class VoidType extends Type {
public String toPrint(String prefix) {
return prefix + "Void\n";
}
}
|