ocyzl
ocyzl
I'm using Chez Scheme Version 9.5.8 64-bit nonthreaded on Windows 7. The program writes 600 MB of data to a file, then reads it back in and checks that what...
http://cisco.github.io/ChezScheme/csug9.5/system.html#./system:h10 says about dates: > As for time objects, a nanosecond is an exact integer less than 109. A date-object second is, however, an exact nonnegative integer less than 62....
(lcm)
https://www.scheme.com/tspl4/objects.html#./objects:s110 says: > Although `lcm` should probably return infinity when called with no arguments, it is defined to return 1. 1 makes sense to me. What's the argument for infinity?
(/ 0 4.0) evaluates to 0.0. I'm not sure this is a bug, but I was expecting 0, like (* 0 0.25). Is there a good reason for the current...
`((ignoring-nils +) nil nil)` returns 0, but `((ignoring-nils +) nil nil nil)` returns nil. Is this difference intentional? I figure they should both return 0.