06-29-2025, 12:49 PM
If you really want to code like that you could easily do something like this.
Code: (Select All)
Dim I As _Integer64
I = 10
INC I
Print I
Print
End
Sub INC (X As _Integer64)
X = X + 1
End Sub

