# Return command
The Return commmand is used to return information from a function.
 
```
funct function(){
    return "Return Value!";
};
```