=========================
 Iterative to Recursive
=========================

This software takes a Java file and automatically transforms all
the internal *iterative* loops into equivalent *recursive* loops.

---------
  USAGE
---------
1) java iter2rec "file"
2) java iter2rec "originalFile" "destinationFile"

where
"file" is the name of the Java file to transform (with the iterative loops).
"originalFile" is the name of the original Java file (with the iterative loops).
"destinationFile" is the name of the destination Java file (with the recursive loops).

---------
  NOTE
---------
An example of use from another Java project can be found in the file Tester.java.