return;

return expr;

Return statement. Transfer control back to a calling statement.


Example


f( x ) = {

   if( x<0 )

      return x*x;

   else

      return -x/2;

}