Justin Ethier scripsit:
> While reading through R7RS draft 8 I noticed a minor formatting error in
> section 6.9 (ByteVectors). The example code for (bytevector-u8-set!) is
> missing two closing parenthesis in the first line:
Thanks. Fixed for draft 9.
--
When I'm stuck in something boring
While reading through R7RS draft 8 I noticed a minor formatting error in
section 6.9 (ByteVectors). The example code for (bytevector-u8-set!) is
missing two closing parenthesis in the first line:
(let ((bv (bytevector 1 2 3 4)
(bytevector-u8-set! bv 1 3)
bv)
=> #u8(1 3 3 4)
It