pom.xml has been added

This commit is contained in:
Sameer Rahmani 2019-12-14 22:39:06 +00:00
parent 0a02d3b359
commit 72e36856dd
3 changed files with 35 additions and 8 deletions

6
.gitattributes vendored
View File

@ -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

33
pom.xml Normal file
View File

@ -0,0 +1,33 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>serene.simple</groupId>
<artifactId>serene-simple</artifactId>
<version>0.1.0-SNAPSHOT</version>
<properties>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -16,8 +16,8 @@ public class SpecialForm extends Node {
public static Node check(ListNode<Node> 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) {