Check for indent level in forms
[wolf] / resources / invalidindent2.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
10      y)
11     (z
12       9))
13    (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create)
14     (when
15      (read-line str)
16      (format t "This file had some things in int, yay!~%")))))