X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=wolf;a=blobdiff_plain;f=resources%2Fhangingcloseparens1.lisp;fp=resources%2Fhangingcloseparens1.lisp;h=1f08a713f724163d6ee41bb330511b8ffe115eea;hp=0000000000000000000000000000000000000000;hb=7b1e850e86136da3a24923fe457f76c835620d6d;hpb=659997d6add304dee5b24b2f496412f2e8e57c4d diff --git a/resources/hangingcloseparens1.lisp b/resources/hangingcloseparens1.lisp new file mode 100644 index 0000000..1f08a71 --- /dev/null +++ b/resources/hangingcloseparens1.lisp @@ -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!~%")))) +)