JanetDocsPlaygroundI'm feeling luckyGitHub sign in

describe



    cfunction
    src/core/corelib.c on line 318, column 1

    (describe x)

    Returns a string that is a human-readable description of `x`. For 
    recursive data structures, the string returned contains a pointer 
    value from which the identity of `x` can be determined.


3 examplesSign in to add an example
Loading...
(describe @[:a :b]) # => "<array 0x55EC375CF440>"
sogaiuPlayground
(describe {:a 1}) # => "<struct 0x5564AF1BD6C0>"
sogaiuPlayground
(describe :a) # => ":a"
sogaiuPlayground