Mini-Exercise #4
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