Modified the PS compiler to produce an intermediate representation that looks like...
[clinton/parenscript.git] / src / utils.lisp
index 897305e..4e2066a 100644 (file)
@@ -103,4 +103,4 @@ SOMEGLOBAL."
 (defun flatten (x &optional acc)
   (cond ((null x) acc)
         ((atom x) (cons x acc))
-        (t (flatten (car x) (flatten (cdr x) acc)))))
\ No newline at end of file
+        (t (flatten (car x) (flatten (cdr x) acc)))))