My program creates dummy data. Part of these dummy data are keys in the form of symbols: (lambda (i) (make-symbol(format nil"~@r"i))) (fixnum values with their Roman numeral as symbol as key). The program stores these dummy key value pairs in a data structure i'm developing.
I tried to use these symbols from the REPL to test retrieving the values by their key. However:
(equal (make-symbol "IX") (make-symbol "IX"))
NIL
(equal (make-symbol "IX") 'IX))
NIL
Is there a way to enter a symbol previously created with make-symbol in the REPL so that both are equal?