# print the number of args passed
var argCount = paramCount()
echo ("No. of arguments: ", argCount)
if (argCount != 1):
echo ("Invalid no. of arguments, Goodbye!")
return
Reading about return, the manual says it can apply to only procs. What is the right way to exit a program?