diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 00a51af..0000000 --- a/.gitattributes +++ /dev/null @@ -1,6 +0,0 @@ -# -# https://help.github.com/articles/dealing-with-line-endings/ -# -# These are explicitly windows files and should use crlf -*.bat text eol=crlf - diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..05756a3 --- /dev/null +++ b/pom.xml @@ -0,0 +1,33 @@ + + 4.0.0 + + serene.simple + serene-simple + 0.1.0-SNAPSHOT + + + 11 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + + + + + + junit + junit + 4.12 + test + + + diff --git a/src/main/java/serene/simple/SpecialForm.java b/src/main/java/serene/simple/SpecialForm.java index 7eaaea3..2611e98 100644 --- a/src/main/java/serene/simple/SpecialForm.java +++ b/src/main/java/serene/simple/SpecialForm.java @@ -16,8 +16,8 @@ public class SpecialForm extends Node { public static Node check(ListNode l) { if (l != ListNode.EMPTY && l.first() instanceof SymbolNode) { System.out.println(">>>>"); - SymbolNode g = l.first(); - System.out.println(g.name); + //SymbolNode g = l.first(); + //System.out.println(g.); } if (l == ListNode.EMPTY) {