Check for spaces/newlines after opening a form
[wolf] / resources / newlineafteropenparens.lisp
1 (in-package #:nothing)
2
3 (defun small-guy (a b) (+ a b))
4 (defun small-guy-2 (a b) (+ a b))
5
6 (defun hello-world (a b c)
7  (progn
8   (let
9    ((x y)
10     (z 9))
11    (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create)
12     (
13      when
14      (read-line str)
15      (format t "This file had some things in int, yay!~%")))))