forked from Arcmyx/pynamics
4 lines
84 B
Python
4 lines
84 B
Python
def log(string, verbose):
|
|
if(verbose):
|
|
print("[LOG (verbose)]", string)
|