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