286 B
286 B
RETURN statement
it is used to return from a function and can be used anywhere within a function
syntax
- RETURN ( return nil )
- RETURN expression ( evaluates expression and returns value )
any return value must match with the type defined while declaring function