Files
courses/py3interm/EXAMPLES/samplelib.py
T
2025-05-20 11:57:43 -04:00

14 lines
179 B
Python

#!/usr/bin/env python
# sample Python module
def spam():
print("Hello from spam()")
def ham():
print("Hello from ham()")
def _eggs():
print("Hello from _eggs()")