8 lines
113 B
Python
8 lines
113 B
Python
|
debug_statements = True
|
||
|
|
||
|
def debug(msg):
|
||
|
if debug_statements:
|
||
|
print(msg)
|
||
|
|
||
|
def info(msg):
|
||
|
print(msg)
|