MCPcopy Create free account
hub / github.com/ShivaBhattacharjee/KeyZen / adder

Function adder

data/python/01_functions.py:10–11  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

8
9def make_adder(n):
10 def adder(x):
11 return x + n
12 return adder
13
14add5 = make_adder(5)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected