add rainbow.tal

This commit is contained in:
Erik Osheim 2022-02-07 23:12:27 -05:00
parent 601d76df88
commit b5d87b3caa
2 changed files with 4 additions and 2 deletions

View File

@ -14,9 +14,11 @@ repl-regex.tal REPL to interactively play with regex.tal
test-regex.tal some testing code for regex.tal
grep.tal very simple grep program using regex.tal
femto.tal early proof-of-concept terminal-based editor
femto.tal very early work-in-progress terminal-based editor
femto launcher shell script for femto.tal
rainbow.tal demo to draw ANSI colors directory to the terminal
drums.tal very simple drum machine (non-interactive)
drums2.tal aleatoric version of drums.tal that adds random hits

View File

@ -1,5 +1,5 @@
#!/bin/sh
for NAME in about.txt math32.tal test-math32.tal tester.py primes32.tal regex.tal repl-regex.tal test-regex.tal grep.tal femto.tal femto drums.tal drums2.tal bfloat16.tal fixed.tal; do
for NAME in about.txt math32.tal test-math32.tal tester.py primes32.tal regex.tal repl-regex.tal test-regex.tal grep.tal femto.tal femto rainbow.tal drums.tal drums2.tal bfloat16.tal fixed.tal; do
cp $NAME /var/www/plastic-idolatry.com/html/erik/nxu
done