Call By Reference
From DataFlex Wiki
Procedure doCall String ByRef sName showln "name:" sName Move "B" to sName End_Procedure
..
Move "A" to sName Send doCall (&sName ) showln "name:" sName
this should show
name:A name:B
Procedure doCall String ByRef sName showln "name:" sName Move "B" to sName End_Procedure
..
Move "A" to sName Send doCall (&sName ) showln "name:" sName
this should show
name:A name:B