Jump to content

Changing function parameters?


Recommended Posts

Wondering if you can change the value of a parameter within the function just like any variable declared within it or are they read-only. Silly example:

Int Function(Int A)
;Do some stuff altering A passed in value
Return A
EndFunction

Instead of:

Int Function(Int A)
Int B = A
;Do some stuff altering B value which is A passed in value
Return B
EndFunction
Edited by FrankFamily
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...