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