using System;
public class Program
{
public static void Main()
/*
GOAL:
Explore boolean arythmetics. It is called boolean after this guy called George Boole
bool variable can have 2 values: true or false
TIPS:
There are 3 basic operations here:
- conjunction (and) operator "&&"
- disjuntion (or) operator "||"
- negation (not) operator "!"
And there is also
- excusive or (xor) operator "^"
Having the 2 variables b1 and b2:
Try out there operations on them with different set of values
Then add the third variable and play some more.
*/
var b1 = false;
var b2 = true;
// var b3 = false;
var result = b1 || !b2;
Console.WriteLine(result);
}