This is a short example of Markdown that includes a code block. Below you’ll find a small Python test function to illustrate how tests can be written.
def test_addition(): result = 2 + 2 assert result == 4, "Math is broken!"
You are not allowed to view comments.