In my script I have a loop that loops out matches. For each match a subroutine match() is run. Inside match() two other subroutines are called for: result() and test().
Now to the question:
If I write the code in result() and test() directly in match() instead of calling for them, the code works perfectly. BUT the code gets huuuuge.
If I call the subroutines in match(), the code does not work!
What is the problem?
PS The code is too big to include it here DS
Start Free Trial