@@ -1 +1 @@
-Subproject commit b63186db5cf7f94355c1b9a0ae7c13b09b2339ea
+Subproject commit 4153f2fca97c34e37fcfc2e8116f7b784e1b173d
@@ -17,7 +17,7 @@ public class LispImpl implements Lisp {
return this.parseList(explode);
} else {
//Element seul
- if(explode.size() > 1) {
+ if(explode.size() > 0) {
throw new LispError("Invalid format");
}
return this.parseElement(val);