No hanging close parens
[wolf] / resources / hangingcloseparens1.lisp
diff --git a/resources/hangingcloseparens1.lisp b/resources/hangingcloseparens1.lisp
new file mode 100644 (file)
index 0000000..1f08a71
--- /dev/null
@@ -0,0 +1,12 @@
+(in-package #:nothing)
+
+(defun small-guy (a b) (+ a b))
+(defun small-guy-2 (a b) (+ a b))
+
+(defun hello-world (a b c)
+ (progn
+  (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create)
+   (when
+    (read-line str)
+    (format t "This file had some things in int, yay!~%"))))
+)