A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
19
Task/Logical-operations/DWScript/logical-operations.dwscript
Normal file
19
Task/Logical-operations/DWScript/logical-operations.dwscript
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