diff options
author | P. J. McDermott <pjm@nac.net> | 2013-09-25 14:27:05 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-09-25 14:27:05 (EDT) |
commit | 54caf841639e553c7e3879c9930b53326b3535f2 (patch) | |
tree | 4f8632c949fdff2e72c1c6e9b211673a8d97b800 | |
parent | 9d9ead7a1cfa0449868a7d424cd361cf99204e5c (diff) | |
download | www-54caf841639e553c7e3879c9930b53326b3535f2.zip www-54caf841639e553c7e3879c9930b53326b3535f2.tar.gz www-54caf841639e553c7e3879c9930b53326b3535f2.tar.bz2 |
projects/cgol/index.mdwn: New file.
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | projects/cgol/index.mdwn | 25 |
2 files changed, 27 insertions, 1 deletions
@@ -3,7 +3,8 @@ MEDIA_BASE = SSIFLAGS = -D DOCUMENT_BASE=$(DOCUMENT_BASE) -D MEDIA_BASE=$(MEDIA_BASE) srcs = \ - projects/index.mdwn + projects/index.mdwn \ + projects/cgol/index.mdwn objs = $(srcs:.mdwn=.html) .SUFFIXES: diff --git a/projects/cgol/index.mdwn b/projects/cgol/index.mdwn new file mode 100644 index 0000000..80413ac --- /dev/null +++ b/projects/cgol/index.mdwn @@ -0,0 +1,25 @@ +<!--#set var="title" value="cgol (Curses Game of Life)" --> +<!--#include virtual="/includes/header.html" --> + +cgol (Curses Game of Life) +========================== + +cgol is an implementation of Conway's Game of Life written in C and using the +curses interface. Upon start, it generates a finite grid with a random seed +pattern. It then iterates through generations indefinitely (unless the '-n' +option is supplied). + +It was written simply for its hack value. Game of Life is a magnificent hack of +a game: there is no gameplay beyond the initial state, yet it can still provide +hours of fun. + +Getting cgol +------------ + +Download or browse the repository hosted on this server: +<<http://odin1.pehjota.net/git/cgol/>> + +You may share and modify this software under the terms of the GNU General Public +License, version 3 or later. See "COPYING" in the source tree for details. + +<!--#include virtual="/includes/footer.html" --> |