14 lines
179 B
Python
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()")
|