Start script. Sets size of the board to match terminal.
[cellular-automata.git] / 001 / life
CommitLineData
15ee0f23
SK
1#! /bin/sh
2
3
4Y=`expr \`stty size | awk '{print $1}'\` - 3`
5X=`stty size | awk '{print $2}'`
6
7
8erlc life.erl
9erl -noshell -s life bang $X $Y
This page took 0.026887 seconds and 4 git commands to generate.