/ program test auto x,y,z Function main[argc,argv] printf "Now type in `c x(return)' and then `p(return)'" z := 10 y := z * 6 printf "You should get the message that var changed to 60." printf "You can type an L(return) and F(return) to test the debugger" printf "but eventually you should exit via a p(return)" printf " " x := y printf "The values are x=%d y=%d z=%d" x,y,z ret .end