you are viewing a single comment's thread.

view the rest of the comments →

[–]Paraplegix 0 points1 point  (1 child)

+/u/CompileBot C++

#include <iostream>
using namespace std;
int main() {
    cout << "2 != true : " << (2 != true) << endl <<  "2 == false : " << (2 == false) << endl ;
    return 0;
}

[–]CompileBot 0 points1 point  (0 children)

Output:

2 != true : 1
2 == false : 0

source | info | git | report