Both Input and Output
x = 10
Call squid(x)
Print x
Private Sub squid(y As Integer)
    y = 2*y
End Sub
The program prints 20