You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beautiful-racket/beautiful-racket/br/demo/hdl/Or.hdl

7 lines
159 B
Plaintext

#lang racket/base
(provide Or)
(define (Or #:a a #:b b)
(define out (if (or (not (zero? a)) (not (zero? b)))
1
0))
out)