OP

Revision en2, by aa2, 2022-06-01 04:48:41
endl = '\n';
class Cout:
    def __lshift__(self, s):
        print(s, end='')  
        return self;
cout = Cout();

cout << "HON HON HON" << endl;
Tags op

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English aa2 2022-06-01 04:48:41 36
en1 English aa2 2022-06-01 04:48:10 143 Initial revision (published)