tinytool-v2:

Following on from tinytool-v1, without changing the input format from:

  INPUT:
    foreach line: F, Op pairs
  OUTPUT:
    foreach line: "int F( int a, int b ) { return (a Op b); }"

(See file 'fullinput' for an example of input in this format).

Here we add:

perlgen		A standalone perl -nl script to generate functions
			including type names, width formatting and easy
			changing of the typename

perlgen2	A standalone Perl script that does the same as
		perlgen but expanding the implicit perl -nl
		loop into an explicit while loop for clarity

On Unix systems, make them executable and run both of them via:

  chmod +x perlgen*
  ./perlgen < fullinput
  ./perlgen2 < fullinput

On Windows systems, use the following to run both of them:

  perl perlgen < fullinput
  perl perlgen2 < fullinput

They should both produce identical output.
