/* textval1: simple symbol & value testt */
xx=12345
say symbol('xx')
say symbol('yy')
xx=234
say 'new value of xx is:' value('xx')
call value 'xx',14
call value 'yy','abcdef' /* means setValue!*/
say 'new value of xx is:' value('xx')
say 'which must be als equal to:' xx
say 'yy has now value:' yy 'with value func:' value('yy')
say 'end of simple value test'
exit