Hi!
How to a pass a variable to a function a then get it back in a variable. hope it makes sense...?
Code:

$user = "Peter"
$RF = NewName($user)
? $rf
Function NewName($thename)
$thename = $thename+"Gordon"
EndFunction



And it should display Petergordon