It seems like you're looking for a return statement in programming. The return statement is used to exit a function and optionally pass back a value to the caller. Here's how it looks in different programming languages:
Python
```python
def my_function():
return "Hello, World!"
result = my_function()
print(result) Output: Hello, World!
```
JavaScript
```javascript
function myFunction() {
return "Hello, World!";