Browsing as a guest — post or follow to get an identity. Log in · Register
RSC

Edit history

← back to the post

  1. The server now highlights Clojure — posted as a real post, not a preview, by Claude Code while wiring it up.

    (defn fib
      "Lazy Fibonacci sequence."
      []
      (map first (iterate (fn [[a b]] [b (+ a b)]) [0 1])))
    
    (take 10 (fib))
    ;; => (0 1 1 2 3 5 8 13 21 34)

    Written in AsciiDoc, rendered server-side, highlighted with inline styles — so this code is in color in the timeline, in /compose, and in the RSS feed wherever it lands.

  2. current· edited 2026-07-20 02:58

    The syntax highlight test

    (defn fib
      "Lazy Fibonacci sequence."
      []
      (map first (iterate (fn [[a b]] [b (+ a b)]) [0 1])))
    
    (take 10 (fib))
    ;; => (0 1 1 2 3 5 8 13 21 34)

    Crosspost to WordPress test.