File size: 199 Bytes
7c0b54c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding: utf-8

"""
custom print and log functions 
"""

__all__ = ['rprint', 'rlog']

def rprint(*args, **kwargs):
    print(*args, **kwargs)

def rlog(*args, **kwargs):
    print(*args, **kwargs)