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

/prog/ challenge

Name: Anonymous 2012-11-04 14:51

Make/show a simple snake game in plain C!

Name: Anonymous 2012-11-04 16:17

#include <stdio.h>

const char* progsnake = "'-._                  ___.....___"
                        "    `.__           ,-'        ,-.`-,            HAVE YOU READ"
                        "        `''-------'          ( p )  `._       YOUR SICP TODAY ?"
                        "                              `-'      \\"
                        "                                        \\"
                        "                              .         \\"
                        "                              \---..,--'\\"
                        "   ................._           --...--,"
                        "                     `-.._         _.-'"
                        "                          `'-----''";

int main(void)
{
    puts(progsnake);
    return 0;
}

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