Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Logical-operations/Scheme/logical-operations.ss
Normal file
10
Task/Logical-operations/Scheme/logical-operations.ss
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
(define (logic a b)
|
||||
(display "a and b is ")
|
||||
(display (and a b))
|
||||
(newline)
|
||||
(display "a or b is ")
|
||||
(display (or a b))
|
||||
(newline)
|
||||
(display "not a is ")
|
||||
(display (not a))
|
||||
(newline))
|
||||
Loading…
Add table
Add a link
Reference in a new issue