Bumped allowable crash frequency to 1000000/1 sec.
[cellular-automata.git] / 001 / bin / life
1 #! /bin/sh
2
3
4 Y=`expr \`stty size | awk '{print $1}'\` - 5`
5 X=`stty size | awk '{print $2}'`
6
7
8 erl \
9 -name life_001@localhost \
10 -noshell \
11 -pa ebin \
12 -life x $X y $Y \
13 -s life bang
This page took 0.089245 seconds and 5 git commands to generate.