Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -5,19 +5,19 @@ Func<bool, bool> a = (bool x){ console.writeLine("a"); ^ x };
|
|||
|
||||
Func<bool, bool> b = (bool x){ console.writeLine("b"); ^ x };
|
||||
|
||||
const bool[] boolValues = new bool[]{ false, true };
|
||||
const bool[] boolValues = new []{ false, true };
|
||||
|
||||
public program()
|
||||
public Program()
|
||||
{
|
||||
boolValues.forEach::(bool i)
|
||||
{
|
||||
boolValues.forEach::(bool j)
|
||||
{
|
||||
console.printLine(i," and ",j," = ",a(i) && b(j));
|
||||
Console.printLine(i," and ",j," = ",a(i) && b(j));
|
||||
|
||||
console.writeLine();
|
||||
console.printLine(i," or ",j," = ",a(i) || b(j));
|
||||
console.writeLine()
|
||||
Console.writeLine();
|
||||
Console.printLine(i," or ",j," = ",a(i) || b(j));
|
||||
Console.writeLine()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue