2 Test
Orpheus Lummis edited this page 2023-05-27 14:30:33 -05:00
This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Markdown Test Document

def factorial(n):
    if n == 0:
        return 1
    else:
        return n * factorial(n-1)

result = factorial(5)
print("Factorial of 5 is:", result)

The quadratic formula is given by:

x = \frac{{-b \pm \sqrt{{b^2 - 4ac}}}}{{2a}}

where a, b, and c are coefficients of a quadratic equation.