age = 10 call changevalue age notice "You are " + str$(age) + " years old." sub changevalue byref x 'the value is used x = x+5 end sub