compilation_course_compiler/helper.py

5 lines
115 B
Python
Raw Normal View History

2024-03-26 19:02:54 +00:00
import sys
def print_err(*args, **kwargs):
2024-04-04 06:56:28 +00:00
''' print to stderr '''
2024-03-26 19:02:54 +00:00
print(*args, file=sys.stderr, **kwargs)