From 72e36856ddec8d3c2a3917fe1fd06a02e60dc2e1 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Sat, 14 Dec 2019 22:39:06 +0000 Subject: [PATCH] pom.xml has been added --- .gitattributes | 6 ---- pom.xml | 33 ++++++++++++++++++++ src/main/java/serene/simple/SpecialForm.java | 4 +-- 3 files changed, 35 insertions(+), 8 deletions(-) delete mode 100644 .gitattributes create mode 100644 pom.xml 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) {