JanetDocsPlaygroundI'm feeling luckyGitHub sign in

doc*



    function
    boot.janet on line 3301, column 1

    (doc* &opt sym)

    Get the documentation for a symbol in a given environment. Function 
    form of `doc`.


1 exampleSign in to add an example
Loading...
(doc doc) # works
(doc* doc) # symbol <function doc> not found
(doc* "doc") # same as (doc doc)
skuzzymigletPlayground