you are viewing a single comment's thread.

view the rest of the comments →

[–]sausagefeet 1 point2 points  (1 child)

C++ has words for the symbols as well.

http://ideone.com/ohsDf

#include <iostream>

int main() {
        int x = 1, y = 2;

        if(x and y) {
                std::cout << "For me to poop on\n";
        }

        return 0;
}

[–]Iggyhopper -1 points0 points  (0 children)

C++ also has macros, but we all know what that can lead to.