; this shows that variable
; spaces are now valid. :-)

set A  to   1
set  B  to  2
set   C   to    3
find(  D ,  "alyson"  ,   C)

if (A ! 1) error("A not 1")
if  (B  !  2) error(  "B not 2")
if(C!3)   error(   "C not 3"  )

terminate()
