8 lines
180 B
Python
8 lines
180 B
Python
|
|
__all__ = ["SIMPLE_CONST", "bar"]
|
|
|
|
SIMPLE_CONST = 2
|
|
|
|
def bar(a, b):
|
|
"""Returns whether :a: and :b: have passed the bar exam in their state."""
|
|
return a + b > SIMPLE_CONST
|