Skip to content

Instantly share code, notes, and snippets.

View michiakig's full-sized avatar

aki michiakig

  • Rent the Runway
  • Brooklyn, NY
View GitHub Profile
anonymous
anonymous / seq.js
Created June 26, 2013 16:20
function LazySeq(head, tail) {
this.head = head;
this.tail = tail;
}
LazySeq.prototype.first = function() {
return this.head;
}
LazySeq.prototype.rest = function() {
@arnar
arnar / gist:1310968
Created October 25, 2011 00:46
Goodbye...
;int main(void) { printf( /*
(format t ;*/
"goodbye dmr and jmc, thanks for everything!"
); return 0; } /*
(quit)
;*/