Hi,Need a simple answer. How do I terminate and exit a skill program early if a condition is not met?Regards,Stella
Hi Stella,It may be too simple but you can use the return command within a prog loop.eg.defun( test (a b) prog(() unless(a == b return(1)) . . return(0) ))Cheers, Dave
Hi Dave,Thanks. I was trying that out yesterday but got the syntax wrong so it did not work. Solved now. Thanks for the help.Regards,Stella