summaryrefslogtreecommitdiffstats
path: root/src/ast/types/AtomType.java
blob: 0387ec192c9600c724ddaa43e84d5db26ec91560 (plain)
1
2
3
4
5
6
7
8
9
10
11
package ast.types;

/**
 * An tom type.
 * TODO: do I need to use this one?
 */
public class AtomType extends Type {
    public String toPrint(String prefix) {
        return prefix + "Atom\n";
    }
}