mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Fix to use mutable objects
This commit is contained in:
parent
f2b9658b21
commit
7fc911069d
1 changed files with 2 additions and 2 deletions
|
@ -105,8 +105,8 @@
|
|||
(assert:equal "set local x" x #t))
|
||||
#f)
|
||||
|
||||
(define a '(#f #f))
|
||||
(define b '(#f . #f))
|
||||
(define a (list #f #f))
|
||||
(define b (cons #f #f))
|
||||
|
||||
(set-car! a 1)
|
||||
(set-cdr! a '(2))
|
||||
|
|
Loading…
Add table
Reference in a new issue