Expressions as Actual Parameters
x = 10
Call squid(x+5)
Private Sub squid(y As Integer)
    Print y
End Sub
The program prints 15
Here, Visual Basic makes an anonymous (secret) variable to
hold the result of adding x and 5