[net.games.go] making the first board

chuqui@nsc.UUCP (Chuq Von Rospach) (02/15/84)

Here is a quickie program I wrote to create boards. The format is:

mkboard | decode > <goboardfile>

and compile it wiht cc mkboard.c -o mkboard [-s -O to taste]

chuq

--- cut at the dotted line ---


#include <stdio.h>

main()
{
int i,j;

for (i = 0 ; i < 19 ; i++)
    for (j = 0; j < 19; j++)
	putchar('0');
    putchar('\n');
}
-- 
From the house at Pooh Corner:		Chuq 'Nuke Wobegon' Von Rospach
{fortune,menlo70}!nsc!chuqui		Have you hugged your Pooh today?

Cottleston, Cottleston, Cottleston Pie