You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(car-atom (+ 1 2)) --> [] (should return [+]), whereas (car-atom (cons-atom 1 (2))) --> [cons-atom]. It looks like for some reason arithmetic operations are eagerly evaluated, or maybe it's just that type-checking are not fully implemented in general.
The text was updated successfully, but these errors were encountered:
(car-atom (+ 1 2))
-->[]
(should return[+]
), whereas(car-atom (cons-atom 1 (2)))
-->[cons-atom]
. It looks like for some reason arithmetic operations are eagerly evaluated, or maybe it's just that type-checking are not fully implemented in general.The text was updated successfully, but these errors were encountered: