Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
19
Task/Logical-operations/DWScript/logical-operations.dw
Normal file
19
Task/Logical-operations/DWScript/logical-operations.dw
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
var a := True;
|
||||
var b := False;
|
||||
|
||||
Print('a = ');
|
||||
PrintLn(a);
|
||||
Print('b = ');
|
||||
PrintLn(b);
|
||||
|
||||
Print('a AND b: ');
|
||||
PrintLn(a AND b);
|
||||
|
||||
Print('a OR b: ');
|
||||
PrintLn(a OR b);
|
||||
|
||||
Print('NOT a: ');
|
||||
PrintLn(NOT a);
|
||||
|
||||
Print('a XOR b: ');
|
||||
PrintLn(a XOR b);
|
||||
Loading…
Add table
Add a link
Reference in a new issue