User:Icarot

From Noisebridge
Revision as of 01:54, 28 December 2013 by Icarot (talk | contribs) (I am now immunized.)
Jump to navigation Jump to search

Projects

(both on indefinite hiatus while I throw myself at this mad world)

λβ

Azure - (highly) experimental Clojure VM with LLVM and native targets. Immature.

adduser stanza

adduser --shell /bin/zsh --gecos 'Daemon' icarot

Recurse me baby, just don't hurt me

(defn ack [m n] (cond (zero? m) (inc n) (zero? n) (ack (dec m) 1) :else (ack (dec m) (ack m (dec n)))))