14 lines
128 B
Python
14 lines
128 B
Python
def atom():
|
|
print("atom")
|
|
|
|
|
|
def thing():
|
|
print("thing")
|
|
|
|
|
|
def stuff():
|
|
print("stuff")
|
|
|
|
|
|
def foo():
|
|
print("foo")
|