Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

indenting shit

Name: Anonymous 2012-02-22 23:34

i've started using this really weird style of indenting lisp. it's like fucking k&r lisp up in the bitch.

(dicks (gay cocks)
    (i enjoy
        (big hard dicks)
        (cocks dicks)
    )
)

how am i supposed to be indenting this and or how do you fags indent your lisp

Name: Anonymous 2012-02-23 3:05

>>5
but then you have to parse it in order to read it, and the parsing is user customizable. No fun.
and how do you differentiate between (big hard dicks) and (big (hard dicks)) and ((big hard) dicks) and ((big hard dicks)) and ((((big) (hard (dicks)))))? No fun at all!!

Name: Anonymous 2012-02-23 3:31

Logically,

(i enjoy
  (big (hard dicks))
  ((big hard) dicks))

i enjoy
  big
    hard dicks
  (big hard) dicks

Name: Anonymous 2012-02-23 3:39

i enjoy
  big (hard dicks)
  (big hard) dicks)

Name: Anonymous 2012-02-23 3:50

>>7

Alright, that's cool. As long as you can fall back on sexps when they become necessary. That would make things much nicer. test driven it


(define (g a b j)
  (letrec ((x (lambda (h)
                (a (b a) ((a b) a))))
           (y (lambda (q)
                (if (x (q x))
                  y
                  (y (y x) x))))
           (z (g x y z)))
  (x ((y z) g))))



define (g a b j)
  letrec x lambda (h)
                a (b a)
                  (a b) a
         y lambda (q)
                if x (q x)
                  y
                  y (y x) x
         z g x y z
  x (y z) g


Yeah it's alright.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List