El valor retornado puede hacerse explícito utilizando
el operador return <expresion>
el cual termina la subrutina.
Si no se usa, el valor retornado por la subrutina es el valor de la
última expresión computada.
return EXPR Returns from a subroutine,eval
, ordo FILE
with the value given in<expresion>
. Evaluation of<expresion>
may be in list, scalar, or void context, depending on how the return value will be used, and the context may vary from one execution to the next
Casiano Rodríguez León