Input parameter example
v Remember … the formal parameter becomes an
alias for the actual parameter
x = 10
Call squid(x)
Private Sub squid(y As Integer)
    Print y
End Sub
The program prints 10