Following rules are made for the formation of names in resulting Java programs.
For example: a function in a FORTRAN source code named func1 will be converted to a Java class with the name func1_c.
The FORTRAN main program is also converted into a class, but `_mc' is attached to its name to form the Java class name.
This is just what we have implemented, not a perfect solution. There are some non trivial subtlety here. We'll discuss more about it in section .
For example: label 10 will be converted to j10 in Java program.