laurent.orseau
2019-11-25 08:07:14

file->lines is also quite useful


vitalyankh
2019-11-25 08:36:40

@vitalyankh has joined the channel


soegaard2
2019-11-25 20:32:20

Anyone with Racket CS 7.5 installed? I got a bug report. Does the this run in DrRacket CS:

#lang sicp (/ (+ 5 4 (- 2 (- 3 (+ 6 (/ 4 5))))) (* 3 (- 6 2) (- 2 7))) https://github.com/sicp-lang/sicp/issues/32


mflatt
2019-11-25 20:38:10

No, it runs out of memory, so something is clearly wrong. Works fine in traditional DrRacket and with just Racket CS.


mflatt
2019-11-25 20:39:06

Just -37/150 goes wrong in DrRacket CS, so it’s almost certainly something triggered by trying to format a fraction.


soegaard2
2019-11-25 20:42:28

There is not much going on in the sicp lang.

(define-syntax module-begin (syntax-rules () ((_ . forms) (#%printing-module-begin (module configure-runtime '#%kernel (print-as-expression #f) (print-pair-curly-braces #t) (print-mpair-curly-braces #f)) . forms)))) https://github.com/sicp-lang/sicp/blob/master/sicp/main.rkt


mflatt
2019-11-25 20:57:42

Yes, I mean it’s unrelated to the sicp language.


soegaard2
2019-11-25 21:00:07

Check.


mflatt
2019-11-26 03:25:20

Repair pushed.


sorawee
2019-11-26 04:34:40

Thanks!