summaryrefslogtreecommitdiffstats
path: root/src/ast/types/AtomType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/types/AtomType.java')
-rw-r--r--src/ast/types/AtomType.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ast/types/AtomType.java b/src/ast/types/AtomType.java
new file mode 100644
index 0000000..a44a06c
--- /dev/null
+++ b/src/ast/types/AtomType.java
@@ -0,0 +1,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";
+ }
+}