The return_statement is used to return from a function or to return control to the main program from an onsignal_function. To return a value from a function the syntax is:
return expr ;
To return from onsignal or to return an empty value (“”) from a function the syntax is:
return ;