https://srfi.schemers.org/srfi-151/srfi-151.html We need to create two new library to add bitwise support. There are already logand, logor available in S7 Scheme, and adding srfi-151 support could make Goldfish Scheme more portable! + [x] and, ior: https://github.com/LiiiLabs/goldfish/issues/85 + [x] not: https://github.com/LiiiLabs/goldfish/issues/86 + [x] xor: https://github.com/LiiiLabs/goldfish/issues/87 + [ ] eqv + [x] nand, nor + [x] andc1, andc2 + [x] orc1, orc2 + [x] arithmetic-shift: https://github.com/LiiiLabs/goldfish/issues/93 + [x] bit-count + [ ] integer-length + [ ] bitwise-if + ...
https://srfi.schemers.org/srfi-151/srfi-151.html
We need to create two new library to add bitwise support.
There are already logand, logor available in S7 Scheme, and adding srfi-151 support could make Goldfish Scheme more portable!