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

ITT: cons in our favorite language

Name: Anonymous 2008-10-03 23:43


typedef struct
{
    void * car;
    void * cdr;
}pair;

pair * cons(void * car, void * cdr)
{
    pair * toCons = malloc(sizeof(pair));
    toCons->car = car;
    toCons->cdr = cdr;
    return toCons;
}

Name: Anonymous 2008-10-05 21:51

Q: What's The Sussman's favorite nursery rhyme?
A: Mary Had a Little Lambda

Q: What did the rude Norwegian call Sussman and Abelson?
A: Jävla ködder

Q: What does The Sussman taste like?
A: Salty milk and cons

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