mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-11 19:10:58 +00:00
9 lines
141 B
Python
9 lines
141 B
Python
__author__ = "swenson"
|
|
|
|
import math
|
|
|
|
|
|
def example_function(x):
|
|
"""Compute the square root of x and return it."""
|
|
return math.sqrt(x)
|