sasagawa888 / eisl

ISLisp interpreter/compiler
Other
272 stars 22 forks source link

Bug og ILOS re define delobal defined class #246

Closed sasagawa888 closed 1 year ago

sasagawa888 commented 1 year ago

($eval (defclass a-3 () ())) ($eval (defglobal a-3 (create (class a-3)))) ($test (eq (class-of a-3) (class a-3)) t) ($eval (defclass a-3 () ())) ($test (eq (class-of a-3) (class )) t)

(class-of a-3) should return class.

sasagawa888 commented 1 year ago

Fixed.