aa2's blog

By aa2, history, 14 months ago, In English

Anyone else get this?

Full text and comments »

  • Vote: I like it
  • +40
  • Vote: I do not like it

By aa2, history, 22 months ago, In English
endl = '\n';
class Cout:
    def __lshift__(self, s):
        print(s, end='')  
        return self;
cout = Cout();

cout << "HON HON HON" << endl;

Full text and comments »

Tags op
  • Vote: I like it
  • +11
  • Vote: I do not like it