Working on the new blog

Here I am going to be writing about current software development projects.

Sharing code is going to be important during the process, so I want to be able to publish code properly:

"""This is an example of text snippet"""
from typing import Optional

def hello_world(name: Optional[str] = None):
    if name:
        print(f"Hello {name}!")
    else:
        print("Hello World!")

hello_world("reader")

Subscribe to Developer Notes

Sign up now to get access to the library of members-only issues.
Jamie Larson
Subscribe