Are variables passed into Locals?

BlitzMax Forums/BlitzMax Programming/Are variables passed into Locals?

ImaginaryHuman(Posted 2005) [#1]
If I pass values to a Method or Function, which of course created new variables pertaining to the scope of the Method or Function, are those new variables stored in memory are they CPU registers ie like Locals?

Do I need to be copying the incoming values into Local variables to speed things up?


skn3(Posted 2005) [#2]
Parameters are classed as locals.


ImaginaryHuman(Posted 2005) [#3]
Cool!