Hey guys,

Whats the syntax for creating a function where you pass in the parameter? I'm used to C++, so when I declare function, I do it like this...

function MY_STUFF(var MY_VAR) { //blah }

or

function MY_STUFF(var& MY_VAR) { //blah }

...for passing by reference. Unfortunately I get a compile error. I must be doing something wrong! Help! Thanks a ton.

-Harb