FIT   100
© Copyright University of Washington 1999-2000
Review -- Control Flow for Procedures
vWhen we call a procedure, Visual Basic jumps to the code for the procedure.  It runs this code, then returns back to where the procedure was called, and continues on.

x = 5
Call squid()
x = x+1

Private sub squid()
     Print “hi there”
End Sub
v