python-mastery/simplemod.py
2024-02-04 10:28:09 -06:00

14 lines
124 B
Python

x = 42
def foo():
print('x is', x)
class Spam:
def yow(self):
print('Yow!')
print('loaded simplemod')