Check for spaces/newlines after opening a form
[wolf] / resources / good.lisp
index 3328e2e18f8c220b2b7be045062f07d3904c44c3..adb5e3797718e50a07ec79a6c1d168429c14583f 100644 (file)
@@ -1,8 +1,14 @@
 (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!~%")))))
+  (let
+   ((x y)
+    (z 9))
+   (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!~%")))))