1 2 3 4 5 6 7 8 9 10 11 12 13
# Same as simple_math.py but for testing preamble functionality def add(a, b): return a + b def multiply(x, y): return x * y def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) PI = 3.14159