5 lines
90 B
Python
5 lines
90 B
Python
verbose = True
|
|
def log(string):
|
|
if(verbose):
|
|
print("[LOG (verbose)]", string)
|