# 009: Multiple Parameters # Functions with several inputs add(a, b): a + b multiply(x, y): x * y # Use them together result = add(3, 4) show "3 + 4 = {result}" result = multiply(5, 6) show "5 × 6 = {result}" # Compose functions total = add(multiply(2, 3), multiply(4, 5)) show "2×3 + 4×5 = {total}"