fork download
  1. (define x (list 1 2 3))
  2. ; (set-cdr! (cddr x) x)
  3. (set! *print-circle* #t) ; How to enable in chicken scheme?
  4. (format #t "~A~%" x)
  5. ;(display x)
  6. ;(print x)
Success #stdin #stdout 0.01s 7884KB
stdin
Standard input is empty
stdout
(1 2 3)