Moved Life implementations into 'life' directory.
[cellular-automata.git] / life / 003 / bin / life
diff --git a/life/003/bin/life b/life/003/bin/life
new file mode 100755 (executable)
index 0000000..072d422
--- /dev/null
@@ -0,0 +1,11 @@
+#! /bin/sh
+
+
+Y=`expr \`stty size | awk '{print $1}'\` - 4`
+X=`stty size | awk '{print $2}'`
+
+
+erl \
+    -noshell \
+    -pa ebin \
+    -s life bang $X $Y
This page took 0.031485 seconds and 4 git commands to generate.