Skip to content

Instantly share code, notes, and snippets.

@ellingtonjp
ellingtonjp / fib.md
Last active September 11, 2024 17:40

No comments

System

Task: given a block code, explain what it does simply and concisely.

User

def fib(n):
  if n < 0:
      raise "input must be positive"
  if n == 0: