Review -- Control Flow for Procedures
v When 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