This Web
Other Webs
Schematics
Scheme Links
string->symbol
symbol->string
> (string->symbol "hello") hello > (symbol->string 'hello) "hello"
'hello
'Hello
> (and (eq? 'hello 'Hello) (eq? 'hello 'HeLLo)) #t
> (eq? (string->symbol "hello") (string->symbol "Hello")) #f