beautiful-racket/beautiful-racket/br/demo/hdl/And.tst.rkt
Matthew Butterick e631c39bf2 renames
2016-05-16 16:47:38 -07:00

15 lines
199 B
Racket

#lang br/demo/hdl-tst
/* and */
load And.hdl,
output-list a, b, out;
set a 0, set b 0,
eval, output;
set a 0, set b 1,
eval, output;
set a 1, set b 0,
eval, output;
set a 1, set b 1,
eval, output;