14 lines
124 B
Python
14 lines
124 B
Python
x = 42
|
|
|
|
|
|
def foo():
|
|
print('x is', x)
|
|
|
|
|
|
class Spam:
|
|
def yow(self):
|
|
print('Yow!')
|
|
|
|
|
|
print('loaded simplemod')
|