Arc Forumnew | comments | leaders | submitlogin
2 points by absz 5865 days ago | link | parent

Actually, I believe what's happening is that

  (and:or nil t)
becomes

  ((compose and or) nil t)
, which is then expanded to

  (and (or nil t))
by ac.scm. Observe:

  arc> ((compose and or) nil t)
  t