conversion

List of symbols:

->key, ->sym, def?, ref

->key

Usage: (->key exp) -> keyword

Converts exp to a keyword.

No Examples

->sym

Usage: (->sym exp) -> symbol

Converts exp to a symbol.

No Examples

def?

Usage: (def? symbol) -> #t/#f

If symbol is defined then return true else false.

No Examples

ref

Usage: (ref symbol) -> Value

If symbol is defined then return the thing it references.

No Examples