summaryrefslogtreecommitdiffstats
path: root/src/ast/types/AtomType.java
blob: a44a06cdff531786c074a2187eabc3e833e469e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.clp.project.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";
    }
}