sourcerers:
at    Andrew Turley <aturley@sound.net>
rav   Rafal Sulejman <rms@priv.onet.pl>

(blank 1.1 distribution)

hw.bl (at)
	The Hello World! program in Blank.

fac.bl (at)
	A program which asks for a number and then computes the
	factorial.  This program shows how to fake recursion in Blank.

ctoi.bl (at)
	Enter a character and the program shows the ASCII value.

itoc.bl (at)
	Enter a number between 0 and 255 and the program shows the ASCII
	character that number represents.

cpy.bl (at)
	Copies the contents of the infile to the outfile.
		bli cpy.bl < infile > outfile

conhtml.bl (at)
	Some characters (like < and >) cannot be used in html documents.
	A way around this is to use
		&#xxx;
	where xxx is the ASCII value of the character.  This program
	converts the characters of the infile to this form and writes
	them to the outfile.

(proggies not included in original distribution).

cpy2.bl (rav)
	Copies the contents of the infile to the outfile.
		bli cpy2.bl < infile >  outfile

tolower.bl (rav)
	Changes from upper- to lowercase.

tee.bl (rav)
	Copies infile to outfile and stderr simultaneously.

x_times (rav)
	Enter a number and the program writes string of <number>
	hyphens.

botbeer.bl (at)
	Poorman's Karaoke :) This program "sings" famous "99 bottles of
	beer" song.

ascii.bl (rav)
	Prints all printable ASCII chars (32-255). After `chmod 755' may
	function as a standalone `utility'.

asciihtm.bl (rav)
	Creates (bad) HTML table of all (0-255) ASCII chars.

remap.bl (rav)
	Remapping utility. Could be used as ctrl-char cleaner,
	encode/decode utility, converter etc.  Currently replaces all
	spaces (ASCII 32) with underscores.

hellow.bl <rav>
	Yet another "Hello, World" program. 

blank 1.4.1rs distribution

system.bl <rav>
	Demonstration of blank 1.4.1+ 'system' feature. It's a
	pseudo-quine program.
	
