A tiny practice repo for learning the GitHub pull request workflow.
This repo exists so you can practice the full loop of making a change, opening a pull request, and merging it — without any risk to a real project.
A small Python function to demonstrate the workflow:
def add(a, b):
"""Return the sum of a and b."""
return a + b