Posts by Nilton • 1 point
1 post
-
-6
votes3
answers9397
viewsA: How to pass arguments by reference in Python?
The python people are not understanding the question. To go by reference in Harbour for example is: function funcaoX(x) x = x + 10 return nil y = 5 funcaoX(y) // Passando sem referência print(y) //…