Introduction
This is an example MDX file. It demonstrates how to reword content while maintaining its original meaning. The goal is to change the wording significantly but keep the underlying message identical.
Visit Google.
```mdx
---
title: "Reworded MDX Example"
description: "A reworded MDX file is presented here as an illustration."
---
# Introduction
This MDX file serves as a demonstration. Its purpose is to show how content can be rephrased while ensuring the initial meaning is fully preserved. The objective involves a substantial alteration of the phrasing, all while keeping the core message unchanged.
## Code Example
Take a look at this code example:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));