I think I'm right, but I want to verify it. I'm learning PERL on my own
and "decomposing" some programs to see how they "flow". My question is -
given the following program "structure", what will print out?

Print "one"
Subroutine aa
  print "two"
End
Print "three"
Print "four"
Subroutine bb
   print "five"
End
Print "six"
Sub "aa"
Sub "bb"
Print "seven"

Given that this "pseudocode" executes, am I correct in saying that the
following will print out (if it were really coded and run...):

One
Three
Four
Six
Two
Give
Seven

If this is not the order that things would "print out", what IS the
correct sequence?

Thanks!

Portions of this message may be confidential under an exemption to Ohio's public 
records law or under a legal privilege. If you have received this message in error or 
due to an unauthorized transmission or interception, please delete all copies from 
your system without disclosing, copying, or transmitting this message.

Reply via email to