			Example programs
;==========================================================;
####	hello.bf
;==========================================================;
Run:
	bf hello.bf

Output:
	Hello World!\n

Note:
	hello world program.

;==========================================================;
####	count.bf
;==========================================================;
Run:
	bf count.bf

Output:
	9876543210

Note:
	Learn how to countdown...

;==========================================================;
####	wc.bf
;==========================================================;
Run: 
	cat somefile | bf wc.bf

Output:
	LINES WORDS BYTES

Note:
	It`s not like the standard WC program, however the
	basic output are much alike.


