PROGRAM
	charcount: count characters in input
USAGE
	charcount
DESCRIPTION
	charcount counts the characters in its input and writes the total as a single
	line of text to the output. Since each line of text is internally delimited
	by a NEWLINE character, the total count is the number of lines plus the
	number of characters within each line.

	Though the standard ASCII newline is two characters, i.e. CRLF, this is only
	counted as one.
EXAMPLE
	C:\Users\David> charcount
	hello, world
	^Z
	13