compilation_course_compiler/helper.py
2024-04-04 09:56:28 +03:00

5 lines
115 B
Python

import sys
def print_err(*args, **kwargs):
''' print to stderr '''
print(*args, file=sys.stderr, **kwargs)