mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-13 07:47:39 +02:00
Issue with top-level
This commit is contained in:
parent
4b7cc58214
commit
2aa9276132
1 changed files with 7 additions and 3 deletions
|
@ -18,6 +18,10 @@
|
|||
bv)
|
||||
) ;=⇒ #u8(1 3 3 4)
|
||||
|
||||
(define a #u8(1 2 3 4 5))
|
||||
(write (Cyc-bytevector-copy a 2 4)) ; =⇒ #u8(3 4)
|
||||
|
||||
;; TODO: does not work properly at the top-level
|
||||
(let ((x 1))
|
||||
(define a #u8(1 2 3 4 5))
|
||||
(define b #(1 2 3 4 5))
|
||||
(write (Cyc-bytevector-copy a 2 4)) ; =⇒ #u8(3 4)
|
||||
(write b)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue