Closed jcubic closed 7 months ago
This doesn't work:
(new (class Object))
But this do:
(define x (class Object)) (new x) ;; ==> #<x>
It's actually an error of REPL when printing the instance of anonymous class.
This doesn't work:
But this do: