Getting Started: A Look at Code and Games test test
Welcome to the new blog! This first post is to test out the features and show you what the content will look like.
The Programming Side
A programming blog isn’t complete without top-notch code highlighting. Here is a simple “Hello World” in Python to demonstrate.
```python
A classic example
def hello(name): print(f”Hello, {name}!”)
hello(“Reader”)