API details.
The location of the closing parenthesis for the parameter list is in the return
key.
def adder(
a:int, # The 1st number to add
# The 2nd number to add.
# NB: This is added to `a`
b:int,
)->int: # The result of adding `a` to `b`
"Add `a` to `b`"
# Calculate the addition
return a+b
parms = param_locs(adder)
parms
docments(adder)
from nbdev.export import notebook2script
notebook2script()