Path 2 — File 1

Introduction

Welcome to path2 notes. This file uses different markdown elements.

Math (if supported)

  • Area of circle: ( A = \pi r^2 )
  • Quadratic: ( x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} )

Horizontal rule


Definition-style list

Term 1: Description for the first term.

Term 2: Description for the second term.

Code block

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