Dear All,
Is this possible like in b4a where byref is used?
So input + 2 is returned, but how do I return multiply as well? Just a silly example.
Is this possible like in b4a where byref is used?
B4X:
Sub AddTwo (input as Int) as Int
input = input + 2
Dim multiply as int = input * 3
Return input
End Sub
So input + 2 is returned, but how do I return multiply as well? Just a silly example.