Mini-Exercise #4 -- Answer
v What does the program print?
x = 10
Call squid(x+5, y)
Print y
Private Sub squid(x As Integer, y As Integer)
    y = x+2
End Sub
The program prints 17